19 lines
392 B
Plaintext
19 lines
392 B
Plaintext
module: os
|
|
function: print
|
|
params:
|
|
declare i1: int
|
|
returns: void
|
|
body:
|
|
syscall("PRINT", i1)
|
|
end body
|
|
end function
|
|
function: println
|
|
params:
|
|
declare i1: int
|
|
returns: void
|
|
body:
|
|
syscall("PRINTLN", i1)
|
|
end body
|
|
end function
|
|
end module
|