functioninfo() public pure returns (string memory) { return'You will find what you need in info1().'; }
functioninfo1() public pure returns (string memory) { return'Try info2(), but with "hello" as a parameter.'; }
functioninfo2(string memory param) public pure returns (string memory) { if(keccak256(abi.encodePacked(param)) == keccak256(abi.encodePacked('hello'))) { return'The property infoNum holds the number of the next info method to call.'; } return'Wrong parameter.'; }
functioninfo42() public pure returns (string memory) { return'theMethodName is the name of the next method.'; }
functionmethod7123949() public pure returns (string memory) { return'If you know the password, submit it to authenticate().'; }