Shout It
Take the string "hello world" and convert it to uppercase, then print it out loud!
Expected output:
text
HELLO WORLD
Hints:
- Use
.to_uppercase()to make text ALL CAPS - You can call
.to_uppercase()directly on a string literal like"hello world".to_uppercase()
rust
fn main() {
}