blob A { a: int b: int c: float } hello : fn A -> = fn a: A { print a.a print a.b print a.c } a := A() a.a = 1 a.b = 2 a.c = 3. hello(a)