snow/playground/Demo7/Main.snow
2025-06-12 16:37:52 +08:00

12 lines
238 B
Plaintext

module: Main
function: main
parameter:
return_type: boolean
body:
declare b1 :boolean = true
declare b2 :boolean = !b1
return b2
end body
end function
end module