github.com/tri-stone/burrow@v0.25.0/tests/jobs_fixtures/app12-check_package_dot_json_presence/storage.sol (about)

     1  pragma solidity >=0.0.0;
     2  
     3  contract SimpleStorage {
     4    int storedData;
     5  
     6    function set(int x) public  {
     7      storedData = x;
     8    }
     9  
    10    function get() public view returns (int /* retVal */) {
    11      return storedData;
    12    }
    13  }