221V 1 week ago
parent
commit
a87d44ab29
1 changed files with 15 additions and 14 deletions
  1. 15 14
      exercises/017_quiz2.zig

+ 15 - 14
exercises/017_quiz2.zig

@@ -9,20 +9,21 @@
 // Let's go from 1 to 16. This has been started for you, but there
 // are some problems. :-(
 //
-const std = import standard library;
+const std = @import("std");
 
-function main() void {
-    var i: u8 = 1;
-    const stop_at: u8 = 16;
-
-    // What kind of loop is this? A 'for' or a 'while'?
-    ??? (i <= stop_at) : (i += 1) {
-        if (i % 3 == 0) std.debug.print("Fizz", .{});
-        if (i % 5 == 0) std.debug.print("Buzz", .{});
-        if (!(i % 3 == 0) and !(i % 5 == 0)) {
-            std.debug.print("{}", .{???});
-        }
-        std.debug.print(", ", .{});
+pub fn main() void{
+  var i: u8 = 1;
+  const stop_at: u8 = 16;
+  
+  // What kind of loop is this? A 'for' or a 'while'?
+  while(i <= stop_at) : (i += 1){
+    if(i % 3 == 0){ std.debug.print("Fizz", .{}); }
+    if(i % 5 == 0){ std.debug.print("Buzz", .{}); }
+    if(!(i % 3 == 0) and !(i % 5 == 0)){
+      std.debug.print("{}", .{i});
     }
-    std.debug.print("\n", .{});
+    std.debug.print(", ", .{});
+  }
+  std.debug.print("\n", .{});
 }
+