fn main() {
let fruits = ["apple", "banana", "orange"];
for fruit in fruits {
println!("I like {}.", fruit);
}