github.com/annchain/OG@v0.0.9/vm/vm_test/contracts/hello.sol (about)

     1  pragma solidity ^0.4.20;
     2  
     3  contract hello {
     4      function helloWorld() public pure returns (string){
     5          return 'helloWorld';
     6      }
     7  }