1
0
Fork 0
mirror of https://github.com/ratfactor/ziglings synced 2024-05-21 02:56:04 +02:00

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.
This commit is contained in:
DerTee 2022-04-03 23:06:25 +02:00 committed by GitHub
parent 57aa916174
commit 4ad21b6678
Signed by: GitHub
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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."