From 3f6facb263d79318017bca61eb89358c5dbf3004 Mon Sep 17 00:00:00 2001 From: Harold Anderson Date: Sun, 28 Jul 2024 08:40:30 -0700 Subject: [PATCH] chore: Update documentation for the `while` loop with `continue` statement --- exercises/013_while3.zig | 1 - 1 file changed, 1 deletion(-) diff --git a/exercises/013_while3.zig b/exercises/013_while3.zig index 6a45451..899ea54 100644 --- a/exercises/013_while3.zig +++ b/exercises/013_while3.zig @@ -17,7 +17,6 @@ // Then, the "continue expression" is executed and then // the condition is checked again. If the condition is true, the block executes again. // - const std = @import("std"); pub fn main() void {