github.com/hyperledger/burrow@v0.34.5-0.20220512172541-77f09336001d/tests/jobs_fixtures/app40-simple-storage/simple_storage.sol (about) 1 pragma solidity ^0.5; 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 }