mirror of https://github.com/embarklabs/embark.git
10 lines
172 B
Solidity
10 lines
172 B
Solidity
|
contract SimpleStorage {
|
||
|
uint storedData;
|
||
|
function set(uint x) {
|
||
|
storedData = x;
|
||
|
}
|
||
|
function get() constant returns (uint retVal) {
|
||
|
return storedData;
|
||
|
}
|
||
|
}
|