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