contract SimpleContract { function greet(name: string): string { return "Hello, " + name; } }
Function with Control Flow:
function max(a: uint256, b: uint256): uint256 { if (a > b) { return a; } else { return b; } }
Last updated 7 months ago