mirror of
https://github.com/embarklabs/embark.git
synced 2025-01-09 05:23:26 +00:00
15 lines
263 B
Solidity
15 lines
263 B
Solidity
contract AnotherStorage {
|
|
uint public storedData;
|
|
|
|
function SimpleStorage(uint initialValue) {
|
|
storedData = initialValue;
|
|
}
|
|
|
|
function set(uint x) {
|
|
storedData = x;
|
|
}
|
|
function get() constant returns (uint retVal) {
|
|
return storedData;
|
|
}
|
|
}
|