This commit is contained in:
nub31
2025-07-03 19:16:28 +02:00
parent 585317e428
commit fee4951a96
5 changed files with 41 additions and 30 deletions

View File

@@ -13,17 +13,9 @@ struct Human
export func main(args: []cstring): i64
{
let x: Human = alloc Human
{
name = alloc Name
{
first = "john"
last = "doe"
}
age = 23
}
let x: cstring = "test"
c::puts(x.name.last)
c::puts(x)
return 0
}