URL to the section(s) of the book with this problem: https://doc.rust-lang.org/book/ch03-05-control-flow.html
Description of the problem: the chapter does not tell if
return value;
is equivalent to
break value;
Suggested fix:
Since I read the documentation without ever compiling a rust project, I can not tell if they are equivalent or not