21 lines
339 B
Plaintext
21 lines
339 B
Plaintext
module: Main
|
|
function: main
|
|
return_type: int
|
|
body:
|
|
foo()
|
|
|
|
return 0
|
|
end body
|
|
end function
|
|
|
|
function: foo
|
|
return_type: int
|
|
body:
|
|
if false then
|
|
return 1
|
|
end if
|
|
|
|
return 0
|
|
end body
|
|
end function
|
|
end module |