15 lines
319 B
Plaintext
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
|