import "c"; struct Human { age: int64; name: string; } global func main() { printName(); } func printName(human: Human) { puts(human.name); }