This commit is contained in:
nub31
2025-06-21 17:57:45 +02:00
parent a97aed0b9c
commit eb5d78f064
3 changed files with 136 additions and 130 deletions

View File

@@ -8,10 +8,24 @@ export func main(args: []cstring): i64 {
let human: Human
human = alloc Human {
name = "test"
name = "member"
}
c::puts(human.name)
c::puts("literal")
let x: cstring
x = "variable"
c::puts(x)
let y: func(cstring)
y = c::puts
y("proxy")
return 0
}