func changeName(p *Person) { p.firstName = "Bob" }
void changeName(ref Person p) { p.firstName = "Bob"; } ?