From e9e6be4e0573be19c9d5521bbd67e13f4b26aa01 Mon Sep 17 00:00:00 2001 From: Dave Gauer Date: Sun, 30 Apr 2023 16:23:35 -0400 Subject: Updating wording in 'for' exercises This is in preparation for another dive into 'for' in an upcoming Exercise 100. Also reformatted 095 for 65 columns and some wording. --- exercises/015_for.zig | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'exercises/015_for.zig') diff --git a/exercises/015_for.zig b/exercises/015_for.zig index 4c87a05..0ee8e7d 100644 --- a/exercises/015_for.zig +++ b/exercises/015_for.zig @@ -23,5 +23,9 @@ pub fn main() void { std.debug.print("The End.\n", .{}); } -// Note that "for" loops also work on things called "slices" +// Note that 'for' loops also work on things called "slices" // which we'll see later. +// +// Also note that 'for' loops have recently become more flexible +// and powerful (two years after this exercise was written). +// More about that in a moment. -- cgit v1.2.3