test: 增加 Demo23

This commit is contained in:
Luke 2025-08-26 14:40:45 +08:00
parent c412d1194b
commit f69dd85365

View File

@ -0,0 +1,14 @@
module: Main
import: ModuleA
function: main
returns: void
body:
declare sum: byte = ModuleA.a
end body
end function
end module
module: ModuleA
globals:
declare const a: byte = 2b
end module