github.com/tri-stone/burrow@v0.25.0/tests/jobs_fixtures/app40-simple-storage/simple_storage.sol (about)

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