// Structure declaration struct Box { int width; int height; } // Declaring and using a structure variable Box box; // No need for "struct" -- in fact, you must not include it here! box.width = 100; box.height = 200; println(box.width, box.height);