Exerpad
🔥0
0 XP
Lv.1 Beginner
Log In

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() {
}