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