safe-react/contracts/SimpleStorage.sol

14 lines
203 B
Solidity
Raw Normal View History

2018-03-01 09:05:56 +01:00
pragma solidity ^0.4.18;
contract SimpleStorage {
uint storedData;
function set(uint x) public {
storedData = x;
}
function get() public view returns (uint) {
return storedData;
}
}