fix exercise 82 output

zig commit bd24e66 changed the floating point formatting implementation so output for exercise 82 no longer matched
This commit is contained in:
dolichomps 2024-03-14 02:28:07 +00:00
parent e3877321b6
commit c8f081f3e8

View file

@ -939,7 +939,7 @@ const exercises = [_]Exercise{
.{ .{
.main_file = "082_anonymous_structs3.zig", .main_file = "082_anonymous_structs3.zig",
.output = .output =
\\"0"(bool):true "1"(bool):false "2"(i32):42 "3"(f32):3.14159202e+00 \\"0"(bool):true "1"(bool):false "2"(i32):42 "3"(f32):3.141592e0
, ,
.hint = "This one is a challenge! But you have everything you need.", .hint = "This one is a challenge! But you have everything you need.",
}, },