Skip to content

Instantly share code, notes, and snippets.

@sauravtom
Created January 7, 2019 06:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sauravtom/5a0e1c11cdc084b614abd52376d7cc01 to your computer and use it in GitHub Desktop.
Save sauravtom/5a0e1c11cdc084b614abd52376d7cc01 to your computer and use it in GitHub Desktop.
pragma solidity ^0.4.25;
contract edm {
string public message;
constructor(string initMessage) public {
message = initMessage;
}
function update(string newMessage) public {
message = newMessage;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment