summaryrefslogtreecommitdiffstatshomepage
path: root/03_assignment.zig
diff options
context:
space:
mode:
authorDave Gauer <dave@ratfactor.com>2021-01-06 17:41:53 -0500
committerDave Gauer <dave@ratfactor.com>2021-01-06 17:41:53 -0500
commitb9b89737fca7cc80b7d1b1527445e0ec71b25dda (patch)
treeb922cc620d25392892b91a0b634925e828edfcd7 /03_assignment.zig
parent30ef32e238465e67321d15c562d6313043dd12d7 (diff)
Added first quiz
Diffstat (limited to '03_assignment.zig')
-rw-r--r--03_assignment.zig4
1 files changed, 2 insertions, 2 deletions
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});
}