mirror of https://github.com/embarklabs/embark.git
31 lines
541 B
Solidity
31 lines
541 B
Solidity
pragma solidity ^0.4.7;
|
|
|
|
import "ownable.sol";
|
|
|
|
contract SimpleStorage is Ownable {
|
|
uint public storedData;
|
|
|
|
function() public payable { }
|
|
|
|
function SimpleStorage(uint initialValue) public {
|
|
storedData = initialValue;
|
|
}
|
|
|
|
function set(uint x) public {
|
|
storedData = x;
|
|
}
|
|
|
|
function set2(uint x, uint unusedGiveWarning) public onlyOwner {
|
|
storedData = x;
|
|
}
|
|
|
|
function get() public view returns (uint retVal) {
|
|
return storedData;
|
|
}
|
|
|
|
function getS() public pure returns (string d) {
|
|
return "hello";
|
|
}
|
|
|
|
}
|