github.com/Tri-stone/burrow@v0.25.0/tests/jobs_fixtures/app21-string_edge_cases/storage.sol (about) 1 pragma solidity >=0.0.0; 2 3 contract SimpleStorage { 4 string storedString; 5 6 function setString(string memory x) public { 7 storedString = x; 8 } 9 10 function getString() public view returns (string memory retString) { 11 return storedString; 12 } 13 } 14