2021-01-18 19:21:18 -05:00
|
|
|
//
|
2021-08-17 03:28:40 -04:00
|
|
|
// Behold the 'for' loop! For loops let you execute code for each
|
|
|
|
// element of an array:
|
2021-01-18 19:21:18 -05:00
|
|
|
//
|
|
|
|
// for (items) |item| {
|
2021-02-07 11:06:51 -05:00
|
|
|
//
|
2021-01-18 19:21:18 -05:00
|
|
|
// // Do something with item
|
2021-02-07 11:06:51 -05:00
|
|
|
//
|
2021-01-18 19:21:18 -05:00
|
|
|
// }
|
|
|
|
//
|
|
|
|
const std = @import("std");
|
|
|
|
|
|
|
|
pub fn main() void {
|
|
|
|
const story = [_]u8{ 'h', 'h', 's', 'n', 'h' };
|
|
|
|
|
|
|
|
std.debug.print("A Dramatic Story: ", .{});
|
|
|
|
|
|
|
|
for (???) |???| {
|
2021-02-15 16:55:44 -05:00
|
|
|
if (scene == 'h') std.debug.print(":-) ", .{});
|
|
|
|
if (scene == 's') std.debug.print(":-( ", .{});
|
|
|
|
if (scene == 'n') std.debug.print(":-| ", .{});
|
2021-01-18 19:21:18 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
std.debug.print("The End.\n", .{});
|
|
|
|
}
|
2023-04-30 16:23:35 -04:00
|
|
|
// Note that 'for' loops also work on things called "slices"
|
2021-02-07 11:06:51 -05:00
|
|
|
// which we'll see later.
|
2023-04-30 16:23:35 -04:00
|
|
|
//
|
|
|
|
// 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.
|