5 lines
136 B
Rust
5 lines
136 B
Rust
|
|
fn main() {
|
||
|
|
println!("{}", "jalapeño".to_uppercase()); // JALAPEÑO
|
||
|
|
println!("{}", "JALAPEÑO".to_lowercase()); // jalapeño
|
||
|
|
}
|