github.com/hyperledger/burrow@v0.34.5-0.20220512172541-77f09336001d/tests/jobs_fixtures/app46-meta-mixed-with-normal/test.sol (about) 1 pragma solidity ^0.5; 2 3 contract Concatenator { 4 string _name; 5 6 function getName() public view returns (string memory) { 7 return _name; 8 } 9 10 function setName(string memory name) public { 11 _name = name; 12 } 13 14 function addName(string memory name) public { 15 _name = string(abi.encodePacked(_name, " ", name)); 16 } 17 }