//Write your own contracts here. Currently compiles using solc v0.4.15+commit.bbb8e64f. pragma solidity ^0.4.18; contract SimpleStore { string store = "abcd"; function getStore() public constant returns (string) { return store; } }
0.4.18