Exerpad
🔥 0
0 XP
Exercise 8 · Chapter: PrintOptional+50 XP

Fix the Spacing

The code below should print I am happy with proper spaces, but something is wrong. Fix it!

Hint: In Rust, you can use {} placeholders or just type the full text inside the quotes.

rust
fn main() {
println!("{}{}{}", "I", "am", "happy");
}
Output
Run your code to see the output here.