feat: migrate from OpView to DoubleLinkedList<Op*> + multiple

funciton arguments
This commit is contained in:
2026-01-06 16:39:51 +01:00
parent 806e20d9b1
commit 589586db51
10 changed files with 136 additions and 89 deletions

View File

@@ -1,4 +1,5 @@
extern putchar
extern iadd
fn hello() {
local h = 72
@@ -14,5 +15,6 @@ fn hello() {
fn main() {
hello()
putchar(3 * 3 + 1)
}
local newline = iadd(3*3, 1)
putchar(newline)
}