finish part 2
[rust-101.git] / src / part01.rs
index 7603c1fa79593467d63c354c293d3bef21b07437..927a61782451c8f6cd5d73cdd552c0efc5cd9ed4 100644 (file)
@@ -94,6 +94,7 @@ pub fn part_main() {
 // `main.rs` to run this code.
 
 // **Exercise**: Write a funtion `vec_avg` that computes the average value of a `Vec<i32>`.
+// 
 // *Hint*: `vec.len()` returns the length of a vector `vec`.
 
 // [index](main.html) | [previous](part00.html) | [next](part02.html)