🚀 Question 200: What will this print? 🦀 ```rust fn main() { let v = vec![1, 2, 3]; let iter = v.iter(); drop(v); for x in iter { println!("{}", x); } } ```
1
0
3
554
0
@code_rusty You can't drop v while it's borrowed by iter.