From 5eb9a30abeab195c0590b4e659c3ef102ac351a9 Mon Sep 17 00:00:00 2001 From: KercyDing Date: Mon, 20 Apr 2026 04:22:21 +0800 Subject: [PATCH 1/2] docs: fix wrong prerequisite in 110_files2.zig --- exercises/110_files2.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) // From 6c2531b824cff8f14cff0857a2fb67db915e1a6e Mon Sep 17 00:00:00 2001 From: Chris Boesch Date: Mon, 20 Apr 2026 19:38:31 +0200 Subject: [PATCH 2/2] added skip to the C exercises --- build.zig | 4 ++++ 1 file changed, 4 insertions(+) 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",