github.com/tri-stone/burrow@v0.25.0/tests/jobs_fixtures/app47-constructor-arguments/storage.sol (about)

     1  pragma solidity >=0.0.0;
     2  
     3  contract SimpleStorage {
     4    string storedString;
     5  
     6    constructor(string x) {
     7      storedString = x;
     8    }
     9  
    10    function getString() constant returns (string retString) {
    11      return storedString;
    12    }
    13  }
    14