Merge branch 'main' into fix_comment

This commit is contained in:
Chris Boesch
2026-04-21 22:13:57 +02:00
2 changed files with 5 additions and 1 deletions

View File

@@ -1230,11 +1230,15 @@ const exercises = [_]Exercise{
.main_file = "096_hello_c.zig", .main_file = "096_hello_c.zig",
.output = "Hello C from Zig! - C result is 17 chars written.", .output = "Hello C from Zig! - C result is 17 chars written.",
.link_libc = true, .link_libc = true,
.skip = true,
.skip_hint = "Skipped until we have found a solution for the removed '@cImport'",
}, },
.{ .{
.main_file = "097_c_math.zig", .main_file = "097_c_math.zig",
.output = "The normalized angle of 765.2 degrees is 45.2 degrees.", .output = "The normalized angle of 765.2 degrees is 45.2 degrees.",
.link_libc = true, .link_libc = true,
.skip = true,
.skip_hint = "Skipped until we have found a solution for the removed '@cImport'",
}, },
.{ .{
.main_file = "098_for3.zig", .main_file = "098_for3.zig",

View File

@@ -1,6 +1,6 @@
// //
// Prerequisite : // Prerequisite :
// - exercise/106_files.zig, or // - exercise/109_files.zig, or
// - create a file {project_root}/output/zigling.txt // - create a file {project_root}/output/zigling.txt
// with content `It's zigling time!`(18 bytes total) // with content `It's zigling time!`(18 bytes total)
// //