snow/playground/Demo1/Main.snow
2025-06-28 17:19:08 +08:00

10 lines
178 B
Plaintext

module: Main
import:Math
function: main
return_type: int
body:
Math.add(6,1)
return 0
end body
end function
end module