#![allow(unused_variables)] fn main() { let s1 = String::from("hello world"); let v1 = Vec::from(s1); for b in v1 { println!("{b}"); } }