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