diff options
| author | Chris Boesch <chrboesch@noreply.codeberg.org> | 2026-04-20 19:38:31 +0200 |
|---|---|---|
| committer | Chris Boesch <chrboesch@noreply.codeberg.org> | 2026-04-20 19:38:31 +0200 |
| commit | 6c2531b824cff8f14cff0857a2fb67db915e1a6e (patch) | |
| tree | 6a43b9ee7828c2e2fa67235a1d0ecd7a4c4bafd0 /build.zig | |
| parent | 42db1f05a7923254e0382d52c4095eb748e8f2cb (diff) | |
added skip to the C exercises
Diffstat (limited to 'build.zig')
| -rw-r--r-- | build.zig | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -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", |
