Exerpad
Exercise 9 · Chapter: Hello, World!Optional+50 XP

ASCII Art

Print this house using text characters:

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

Hint: The backslash is a special character in JavaScript. To print one backslash, you need to type two: console.log("\\") outputs a single backslash.

Need a hint?
3 available · costs 5 XP each
javascript

Output
Run your code to see the output here.