write a lot on Copy and Clone. Now part 05 is too long...
[rust-101.git] / src / part01.rs
index 1603c14eec792e7fa99cde49e6ae2d504dcdba5d..8b14050b039237af6b565adfbf70f7e2d782dbb8 100644 (file)
@@ -87,7 +87,7 @@ pub fn main() {
 // You will have to replace `part00` by `part01` in the `main` function in
 // `main.rs` to run this code.
 
-// **Exercise**: Write a funtion `vec_avg` that computes the average value of a `Vec<i32>`.
+// **Exercise 01.1**: Write a funtion `vec_avg` that computes the average value of a `Vec<i32>`.
 // 
 // *Hint*: `vec.len()` returns the length of a vector `vec`.