1
pragma solidity >=0.4.22 <0.9.0;
6
mood = "Neutral"; // Initial mood
9
function setMood (string memory _mood) public {
10
mood = _mood; // Update the mood
12
function whatIsTheMood() public view returns (string memory){
13
return mood; // Return current mood