© 2026 Hedgehog Software, LLC
struct Foo { int A; int B; }; Foo a = { 5, 7 }; std::cout << a.A; // 5 std::cout << a.B; // 7
a.A = 5; a.B = 7;