X-Git-Url: https://git.ralfj.de/rust-101.git/blobdiff_plain/375923e203d323dadc639434ebc1f29530f4ac2a..488127b6522769f834f8df4ea7c406396782d7e8:/src/part00.rs diff --git a/src/part00.rs b/src/part00.rs index eaed3d7..d8b4ed7 100644 --- a/src/part00.rs +++ b/src/part00.rs @@ -5,7 +5,6 @@ // minimum of a list. //@ ## Getting started - //@ Let us start by thinking about the *type* of our function. Rust forces us to give the types of //@ all arguments, and the return type, before we even start writing the body. In the case of our //@ minimum function, we may be inclined to say that it returns a number. But then we would be in