Skip to content

Instantly share code, notes, and snippets.

@m-yahya
Created November 15, 2018 16:52
Show Gist options
  • Save m-yahya/31743c02d0a022fb15c9484683fcb33a to your computer and use it in GitHub Desktop.
Save m-yahya/31743c02d0a022fb15c9484683fcb33a to your computer and use it in GitHub Desktop.
pragma solidity ^0.4.22;
contract SimpleContract {
string public name;
constructor() {
name = 'my name';
}
function getName() public view returns (string) {
return (name);
}
function changeName(string _name) public {
name = _name;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment