Templates are working, but the code is ugly af

This commit is contained in:
nub31
2025-07-09 22:53:45 +02:00
parent 44665654c8
commit a73c9e5d94
11 changed files with 417 additions and 28 deletions

View File

@@ -10,6 +10,17 @@ func main(args: []cstring): i64
value = "bob"
}
let box2 = alloc Box<cstring>
{
value = "bob"
}
let box3 = alloc Box<u8>
{
value = 23
}
c::puts(box.value)
return 0