2025-08-04 14:52:02 +08:00

15 lines
319 B
Plaintext

module: Main
import: os
function: main
returns: void
body:
// 合法
declare b1: byte = 127b
declare s1: short = 32767s
declare i1: int = 2147483647
declare l1: long = 9223372036854775807L
end body
end function
end module