summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Boesch <chrboesch@noreply.codeberg.org>2026-04-21 22:13:57 +0200
committerChris Boesch <chrboesch@noreply.codeberg.org>2026-04-21 22:13:57 +0200
commit945d9b84b0c3979ef2e20e40b24c0c3eddeab72b (patch)
treee0906cd4cd52b99a8214d7dab1636741c327573a
parent333ca33e78a36d9a334d08db8d775c3570bae1c2 (diff)
parentc7afea6ef515da7b1d93cd0423717d67394625f0 (diff)
Merge branch 'main' into fix_comment
-rw-r--r--build.zig4
-rw-r--r--exercises/110_files2.zig2
2 files changed, 5 insertions, 1 deletions
diff --git a/build.zig b/build.zig
index a65e9b5..07fe5dd 100644
--- a/build.zig
+++ b/build.zig
@@ -1230,11 +1230,15 @@ const exercises = [_]Exercise{
.main_file = "096_hello_c.zig",
.output = "Hello C from Zig! - C result is 17 chars written.",
.link_libc = true,
+ .skip = true,
+ .skip_hint = "Skipped until we have found a solution for the removed '@cImport'",
},
.{
.main_file = "097_c_math.zig",
.output = "The normalized angle of 765.2 degrees is 45.2 degrees.",
.link_libc = true,
+ .skip = true,
+ .skip_hint = "Skipped until we have found a solution for the removed '@cImport'",
},
.{
.main_file = "098_for3.zig",
diff --git a/exercises/110_files2.zig b/exercises/110_files2.zig
index c363086..9b6d673 100644
--- a/exercises/110_files2.zig
+++ b/exercises/110_files2.zig
@@ -1,6 +1,6 @@
//
// Prerequisite :
-// - exercise/106_files.zig, or
+// - exercise/109_files.zig, or
// - create a file {project_root}/output/zigling.txt
// with content `It's zigling time!`(18 bytes total)
//