struct Box { Type width; Type height; } Box b; b.width = 1.2; b.height = 2.4; println("=" + b.width + " =" + b.height);