// * circle1 should hold i32 integers
// * circle2 should hold f32 floats
//
- const circle1 = ??? {
+ const circle1 = Circle(i32){
.center_x = 25,
.center_y = 70,
.radius = 15,
};
- const circle2 = ??? {
+ const circle2 = Circle(f32){
.center_x = 25.234,
.center_y = 70.999,
.radius = 15.714,