fn main() {
let fruits = vec!["apple", "banana", "orange"];
println!("First fruit: {}", fruits[0]);
}