diff options
author | DerTee <4346532+DerTee@users.noreply.github.com> | 2022-04-03 23:06:25 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-04-03 23:06:25 +0200 |
commit | 4ad21b6678c2c84a4d4d592f772d52b498a9f0c7 (patch) | |
tree | 1bf7db2fb53030a1bc4580ecea9c820e737d05b1 | |
parent | 57aa916174cfe045db24d1250f01fffed41332d3 (diff) | |
download | ziglings-4ad21b6678c2c84a4d4d592f772d52b498a9f0c7.tar.gz ziglings-4ad21b6678c2c84a4d4d592f772d52b498a9f0c7.tar.bz2 ziglings-4ad21b6678c2c84a4d4d592f772d52b498a9f0c7.tar.xz ziglings-4ad21b6678c2c84a4d4d592f772d52b498a9f0c7.zip |
fix 064_builtins: @addWithOverflow() explanation
The last two examples do not overflow, because the
result is small enough. This was probably just a typing
error in the original explanation.
-rw-r--r-- | exercises/064_builtins.zig | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/exercises/064_builtins.zig b/exercises/064_builtins.zig index e1af861..508f8ed 100644 --- a/exercises/064_builtins.zig +++ b/exercises/064_builtins.zig @@ -49,8 +49,8 @@ pub fn main() void { // 1101 + 1 = 1110 No. // 1110 + 1 = 1111 No. // 1111 + 1 = 0000 Yes! (Real answer is 10000) - // 0000 + 1 = 0001 Yes! - // 0001 + 1 = 0010 Yes! + // 0000 + 1 = 0001 No. + // 0001 + 1 = 0010 No. // // Also, check out our fancy formatting! b:0>4 means, "print // as a binary number, zero-pad right-aligned four digits." |