//構造体の宣言 struct Box { int width; int height; } //構造体変数の宣言と使用 Box box; //structは不要、というより付けてはいけない box.width = 100; box.height = 200; println(box.width, box.height);