blob: e4b4ac2462a87396e0291919abf1003c6a90b6ae (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
pragma solidity ^0.4.21;
contract SimpleStorage {
uint public storedData;
function set(uint x) {
storedData = x;
}
function get() constant returns (uint retVal) {
return storedData;
}
}
|