Skip to content

Instantly share code, notes, and snippets.

@nunofernandes-plight
Created December 19, 2019 15:26
Show Gist options
  • Save nunofernandes-plight/16f5b9e131c997174029aea8033133c6 to your computer and use it in GitHub Desktop.
Save nunofernandes-plight/16f5b9e131c997174029aea8033133c6 to your computer and use it in GitHub Desktop.
Simple Blockchain Storage
pragma solidity ^0.5.12;
contract SimpleStorageNuno {
string public text;
function set(string memory _text) public {
text = _text;
}
function get () public view returns (string memory) {
return text;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment