projects
/
rust-101.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Start writing a part on closures
[rust-101.git]
/
workspace
/
src
/
part08.rs
diff --git
a/workspace/src/part08.rs
b/workspace/src/part08.rs
index d03934a8a023b6827f2c9298ccd9bca51d9fc0dd..61f665f26cb8c5a4af203031536e2367c2d715c1 100644
(file)
--- a/
workspace/src/part08.rs
+++ b/
workspace/src/part08.rs
@@
-15,7
+15,7
@@
fn overflowing_add(a: u64, b: u64, carry: bool) -> (u64, bool) {
// **Exercise 08.1**: Write the code to handle adding the carry in this case.
unimplemented!()
} else {
// **Exercise 08.1**: Write the code to handle adding the carry in this case.
unimplemented!()
} else {
- //
T
he addition *did* overflow. It is impossible for the addition of the carry
+ //
Otherwise, t
he addition *did* overflow. It is impossible for the addition of the carry
// to overflow again, as we are just adding 0 or 1.
unimplemented!()
}
// to overflow again, as we are just adding 0 or 1.
unimplemented!()
}