18 lines
294 B
Plaintext
18 lines
294 B
Plaintext
module: Main
|
|
import: os
|
|
globals:
|
|
declare sum: int
|
|
function: main
|
|
returns: void
|
|
body:
|
|
sum = ModuleA.a
|
|
os.print(sum)
|
|
end body
|
|
end function
|
|
end module
|
|
|
|
module: ModuleA
|
|
globals:
|
|
declare const a: int =10
|
|
end module
|