// Rust 1.0 Alpha
fn main() {
let s = "jalapeño";
println!("{}", s.chars().map(|c| c.to_uppercase()).collect::<String>());
}