test: 添加 Demo15 项目

This commit is contained in:
Luke 2025-07-28 09:56:09 +08:00
parent 4ccff72a5b
commit 16a5d8d6ac
2 changed files with 20 additions and 0 deletions

View File

@ -0,0 +1,9 @@
module: Main
import: os
function: main
return_type: void
body:
print(222)
end body
end function
end module

View File

@ -0,0 +1,11 @@
module: os
import: os
function: print
parameter:
declare i1: int
return_type: void
body:
syscall("PRINT",i1)
end body
end function
end module