Skip to content

Instantly share code, notes, and snippets.

@fiksn
Created July 24, 2018 15:21
Show Gist options
  • Save fiksn/b63f8eece1f0259845c1747b831d1ba7 to your computer and use it in GitHub Desktop.
Save fiksn/b63f8eece1f0259845c1747b831d1ba7 to your computer and use it in GitHub Desktop.
pragma solidity ^0.4.20;
contract LatestName {
string name = "Gregor";
function setName(string newName) public {
name = newName;
}
function getName() public view returns (string) {
return name;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment