chore: flat out the file structure

This commit is contained in:
2026-09-11 18:48:16 +02:00
parent 959d0a7773
commit 3b98f77c08
78 changed files with 76 additions and 40 deletions
+25
View File
@@ -0,0 +1,25 @@
func println $u32 = native println
allocate uwu
public func main = #main
main:
push $u32 0
storeg %uwu
loop_header:
loadg %uwu
push $u32 10
ge
jnz #loop_end
loop_body:
loadg %uwu
call $u32 println
loadg %uwu
push $u32 1
add
storeg %uwu
jmp #loop_header
loop_end:
ret