diff options
author | Dave Gauer <dave@ratfactor.com> | 2021-11-07 20:52:39 -0500 |
---|---|---|
committer | Dave Gauer <dave@ratfactor.com> | 2021-11-07 20:52:39 -0500 |
commit | d1e684126176214b65399034c96b6f52189b2b72 (patch) | |
tree | 5866b7f3a15945a73b946443fbd490fc8f4cc2d8 /exercises/064_builtins.zig | |
parent | 266449b1dd8e5e89887aa84c2d10270cdd6c7936 (diff) | |
parent | dedd787f2dd0badc03caa1299adaf57eaeaae156 (diff) | |
download | ziglings-d1e684126176214b65399034c96b6f52189b2b72.tar.gz ziglings-d1e684126176214b65399034c96b6f52189b2b72.tar.bz2 ziglings-d1e684126176214b65399034c96b6f52189b2b72.tar.xz ziglings-d1e684126176214b65399034c96b6f52189b2b72.zip |
Merge branch 'main' of github.com:ratfactor/ziglings into main
Diffstat (limited to 'exercises/064_builtins.zig')
-rw-r--r-- | exercises/064_builtins.zig | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/exercises/064_builtins.zig b/exercises/064_builtins.zig index 735ff9d..e1af861 100644 --- a/exercises/064_builtins.zig +++ b/exercises/064_builtins.zig @@ -1,7 +1,7 @@ // // The Zig compiler provides "builtin" functions. You've already // gotten used to seeing an @import() at the top of every -// Ziglings exercise. +// Ziglings exercise. // // We've also seen @intCast() in "016_for2.zig", "058_quiz7.zig"; // and @enumToInt() in "036_enums2.zig". @@ -51,10 +51,10 @@ pub fn main() void { // 1111 + 1 = 0000 Yes! (Real answer is 10000) // 0000 + 1 = 0001 Yes! // 0001 + 1 = 0010 Yes! - // + // // Also, check out our fancy formatting! b:0>4 means, "print // as a binary number, zero-pad right-aligned four digits." - print("{b:0>4} + {b:0>4} = {b:0>4} ({})", .{a, b, my_result, overflowed}); + print("{b:0>4} + {b:0>4} = {b:0>4} ({})", .{ a, b, my_result, overflowed }); print(". Furthermore, ", .{}); @@ -70,5 +70,5 @@ pub fn main() void { // this builtin to reverse the bits of a u8 integer. const input: u8 = 0b11110000; const tupni: u8 = @bitReverse(input); - print("{b:0>8} backwards is {b:0>8}.\n", .{input, tupni}); + print("{b:0>8} backwards is {b:0>8}.\n", .{ input, tupni }); } |