aboutsummaryrefslogtreecommitdiff
path: root/exercises/16_for2.zig
diff options
context:
space:
mode:
authorDave Gauer <dave@ratfactor.com>2021-03-12 18:59:46 -0500
committerDave Gauer <dave@ratfactor.com>2021-03-12 18:59:46 -0500
commit6ad9774189fbd64b2f2c9519f4513ab34b0c3809 (patch)
treed6c90700131d5b28e898881f13e2a05612e4703f /exercises/16_for2.zig
parentbe36352572ddb18218e1830e49316c259dea5e8c (diff)
downloadziglings-6ad9774189fbd64b2f2c9519f4513ab34b0c3809.tar.gz
ziglings-6ad9774189fbd64b2f2c9519f4513ab34b0c3809.tar.bz2
ziglings-6ad9774189fbd64b2f2c9519f4513ab34b0c3809.tar.xz
ziglings-6ad9774189fbd64b2f2c9519f4513ab34b0c3809.zip
"999 is enough for anybody" triple-zero padding (#18)
When I hit 999 exercises, I will finally have reached the ultimate state of soteriological release and no more exercises will be needed. The cycle will be complete. All that will be left is perfect quietude, freedom, and highest happiness.
Diffstat (limited to 'exercises/16_for2.zig')
-rw-r--r--exercises/16_for2.zig33
1 files changed, 0 insertions, 33 deletions
diff --git a/exercises/16_for2.zig b/exercises/16_for2.zig
deleted file mode 100644
index 0a62a1a..0000000
--- a/exercises/16_for2.zig
+++ /dev/null
@@ -1,33 +0,0 @@
-//
-// For loops also let you store the "index" of the iteration - a
-// number starting with 0 that counts up with each iteration:
-//
-// for (items) |item, index| {
-//
-// // Do something with item and index
-//
-// }
-//
-// You can name "item" and "index" anything you want. "i" is a popular
-// shortening of "index". The item name is often the singular form of
-// the items you're looping through.
-//
-const std = @import("std");
-
-pub fn main() void {
- // Let's store the bits of binary number 1101 in
- // 'little-endian' order (least significant byte first):
- const bits = [_]u8{ 1, 0, 1, 1 };
- var value: u32 = 0;
-
- // Now we'll convert the binary bits to a number value by adding
- // the value of the place as a power of two for each bit.
- //
- // See if you can figure out the missing piece:
- for (bits) |bit, ???| {
- var place_value = std.math.pow(u32, 2, @intCast(u32, i));
- value += place_value * bit;
- }
-
- std.debug.print("The value of bits '1101': {}.\n", .{value});
-}