12 lines
253 B
Plaintext
12 lines
253 B
Plaintext
module: os
|
|
// 模块级静态函数(被 import 后可直接调用)
|
|
function: print
|
|
params:
|
|
declare i1: int
|
|
returns: void
|
|
body:
|
|
syscall("PRINT", i1)
|
|
end body
|
|
end function
|
|
end module
|