namespace main struct Human { name: string age: i64 } export func main(args: []^string) { let human = alloc Human { age = 23 name = "oliver" } }