From b9b89737fca7cc80b7d1b1527445e0ec71b25dda Mon Sep 17 00:00:00 2001 From: Dave Gauer Date: Wed, 6 Jan 2021 17:41:53 -0500 Subject: Added first quiz --- 03_assignment.zig | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to '03_assignment.zig') diff --git a/03_assignment.zig b/03_assignment.zig index 6280833..2c4c15a 100644 --- a/03_assignment.zig +++ b/03_assignment.zig @@ -24,7 +24,7 @@ pub fn main() void { // Perhaps you noticed before that the print function takes two // parameters. Now it will make more sense: the first parameter // is a string. The string may contain placeholders '{}', and the - // second parameter is an anonymous struct (data structure) - // with values to be printed in place of the placeholders. + // second parameter is an "anonymous list literal" (don't worry + // about this for now!) with the values to be printed. std.debug.print("{} {} {}\n", .{n, pi, negative_eleven}); } -- cgit v1.2.3-ZIG