Skip to content

Instantly share code, notes, and snippets.

View mrygalski's full-sized avatar

Michael Scott Rygalski mrygalski

View GitHub Profile
pragma solidity ^0.4.18;
contract Contract {
function set(string _value) public {
value = _value;
}
function get() public constant returns (string) {
return value;
}