mirror of
https://codeberg.org/ziglings/exercises.git
synced 2026-06-09 16:39:58 +00:00
Added ex 15,16 for loops
This commit is contained in:
24
15_for.zig
Normal file
24
15_for.zig
Normal file
@@ -0,0 +1,24 @@
|
||||
//
|
||||
// Behold the 'for' loop! It lets you execute code for each
|
||||
// member of an array (and things called 'slices' which we'll
|
||||
// get to in a bit).
|
||||
//
|
||||
// for (items) |item| {
|
||||
// // Do something with item
|
||||
// }
|
||||
//
|
||||
const std = @import("std");
|
||||
|
||||
pub fn main() void {
|
||||
const story = [_]u8{ 'h', 'h', 's', 'n', 'h' };
|
||||
|
||||
std.debug.print("A Dramatic Story: ", .{});
|
||||
|
||||
for (???) |???| {
|
||||
if(scene == 'h') std.debug.print(":-) ", .{});
|
||||
if(scene == 's') std.debug.print(":-( ", .{});
|
||||
if(scene == 'n') std.debug.print(":-| ", .{});
|
||||
}
|
||||
|
||||
std.debug.print("The End.\n", .{});
|
||||
}
|
||||
Reference in New Issue
Block a user