Skip to content

Instantly share code, notes, and snippets.

@Lucas2k
Created October 13, 2018 23:16
Show Gist options
  • Save Lucas2k/b829aa4a12153d2084085555dbcb8c83 to your computer and use it in GitHub Desktop.
Save Lucas2k/b829aa4a12153d2084085555dbcb8c83 to your computer and use it in GitHub Desktop.
pragma solidity ^0.4.24;
contract MessageStore {
address private owner;
string private message;
constructor() public
{
owner = msg.sender;
}
function setMessage(string newMessage) public
{
message = newMessage;
}
function getMessage() public view returns(string)
{
return message;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment