1 2 3 4 5 6 7 8 9 10 11
contract example { function test1(string s) public returns (bool) { string str = "Hello, " + s + "!"; return (str == "Hello, World!"); } function test2(string s, int64 n) public returns (string res) { res = "Hello, {}! #{}".format(s, n); } }