snow/playground/Demo10/Main.snow
2025-06-25 13:49:07 +08:00

13 lines
229 B
Plaintext

function: main
return_type: int
body:
declare res: boolean = 8.1 == 7.1
if res then
return 131
else
return 666
end if
return 65537
end body
end function