embark-area-51/demo/app/contracts/simple_storage.sol

18 lines
288 B
Solidity
Raw Normal View History

2017-01-06 21:48:38 -05:00
pragma solidity ^0.4.7;
2015-05-24 09:07:19 -04:00
contract SimpleStorage {
2015-06-20 08:36:40 -04:00
uint public storedData;
2015-06-14 21:38:00 -04:00
2016-10-02 19:13:46 -04:00
function SimpleStorage(uint initialValue) {
2015-06-20 08:36:40 -04:00
storedData = initialValue;
2015-06-14 21:38:00 -04:00
}
2015-05-24 09:07:19 -04:00
function set(uint x) {
2016-08-17 20:29:41 -04:00
storedData = x;
2015-05-24 09:07:19 -04:00
}
2016-08-17 20:29:41 -04:00
2015-05-24 09:07:19 -04:00
function get() constant returns (uint retVal) {
return storedData;
}
2016-08-14 08:04:34 -04:00
2015-05-24 09:07:19 -04:00
}