test: 重构 Bug2 示例程序

This commit is contained in:
Luke 2025-07-30 11:50:58 +08:00
parent 025ea75f08
commit 30fa84604b

View File

@ -1,8 +1,7 @@
module: Main
import: os
function: main
parameter:
return_type: int
return_type: void
body:
loop:
init:
@ -29,17 +28,6 @@ module: Main
end body
end loop
return 0
end body
end function
function: print
parameter:
declare i1: int
return_type: void
body:
syscall("PRINT",i1)
end body
end function
end module