Ex
Exerpad
🔥0
0 XP
Lv.1 Beginner

ASCII Art

Print this house using text characters:

text
  /\
 /  \
/    \
------
|    |
|    |
------

Hint: The backslash is a special character in some languages, but in Rust it works just like any other character inside println!(). Just type it normally!

rust
fn main() {
}
Exerpad — Learn to Code with Fun!