Created
November 9, 2023 08:25
-
-
Save Violet-Bora-Lee/5a5963c187aaa5b87e0e1d7c8987fbdf to your computer and use it in GitHub Desktop.
Mood Diary
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// SPDX-License-Identifier: MIT | |
pragma solidity ^0.8.19; | |
contract MoodDiary { | |
string mood; | |
function setMood(string memory _mood) public { | |
mood = _mood; | |
} | |
function getMood() public view returns (string memory) { | |
return mood; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment