mirror of
https://github.com/status-im/safe-react.git
synced 2025-01-12 02:54:09 +00:00
14 lines
203 B
Solidity
14 lines
203 B
Solidity
|
pragma solidity ^0.4.18;
|
||
|
|
||
|
contract SimpleStorage {
|
||
|
uint storedData;
|
||
|
|
||
|
function set(uint x) public {
|
||
|
storedData = x;
|
||
|
}
|
||
|
|
||
|
function get() public view returns (uint) {
|
||
|
return storedData;
|
||
|
}
|
||
|
}
|