123456789101112131415161718 |
- --- exercises/080_anonymous_structs.zig
- +++ answers/080_anonymous_structs.zig
- @@ -48,13 +48,13 @@
- // * circle1 should hold i32 integers
- // * circle2 should hold f32 floats
- //
- - var circle1 = ??? {
- + var circle1 = Circle(i32){
- .center_x = 25,
- .center_y = 70,
- .radius = 15,
- };
-
- - var circle2 = ??? {
- + var circle2 = Circle(f32){
- .center_x = 25.234,
- .center_y = 70.999,
- .radius = 15.714,
|