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