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