template struct Box { value: T } func main(args: []cstring): i64 { let box = alloc Box { value = "bob" } c::puts(box.value) return 0 }