mirror of
https://github.com/embarklabs/embark.git
synced 2025-01-10 22:05:55 +00:00
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;
|
|
}
|
|
}
|