From c8f081f3e8f76efa53c63d2d12ad5d19147d0c28 Mon Sep 17 00:00:00 2001 From: dolichomps Date: Thu, 14 Mar 2024 02:28:07 +0000 Subject: [PATCH] fix exercise 82 output zig commit bd24e66 changed the floating point formatting implementation so output for exercise 82 no longer matched --- build.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.zig b/build.zig index 5263023..a612a23 100644 --- a/build.zig +++ b/build.zig @@ -939,7 +939,7 @@ const exercises = [_]Exercise{ .{ .main_file = "082_anonymous_structs3.zig", .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.", },