aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/build.zig
diff options
context:
space:
mode:
authorChris Boesch <chrboesch@noreply.codeberg.org>2023-02-18 23:39:21 +0100
committerChris Boesch <chrboesch@noreply.codeberg.org>2023-02-18 23:39:21 +0100
commit23f2cc88d268ecc1ed0cd5f70a315b02f94ff21b (patch)
tree26305b3bae8ccdabfb23bddc0ca3b0038f20f0f0 /build.zig
parent6353299cd622141333fcb0e2ae11118465fee9ea (diff)
added C math exercise
Diffstat (limited to 'build.zig')
-rw-r--r--build.zig7
1 files changed, 6 insertions, 1 deletions
diff --git a/build.zig b/build.zig
index 1abe5c7..785cceb 100644
--- a/build.zig
+++ b/build.zig
@@ -471,7 +471,12 @@ const exercises = [_]Exercise{
},
.{
.main_file = "093_hello_c.zig",
- .output = "Hello C from Zig! - C result ist 17 chars",
+ .output = "Hello C from Zig! - C result ist 17 chars written.",
+ .C = true,
+ },
+ .{
+ .main_file = "094_c_math.zig",
+ .output = "The normalized angle of 765.2 degrees is 45.2 degrees.",
.C = true,
},
.{