embark/demo/contracts/simple_storage.sol
2015-05-24 09:07:19 -04:00

10 lines
172 B
Solidity

contract SimpleStorage {
uint storedData;
function set(uint x) {
storedData = x;
}
function get() constant returns (uint retVal) {
return storedData;
}
}