몬생긴 개
Bash
bash
echo '|\_/|
|q p| /}
( 0 )"""\
|"^"` |
||_/=\\__|'
1
2
3
4
5
2
3
4
5
C
c
#include <stdio.h>
int main(void) {
printf("|\\_/|\n");
printf("|q p| /}\n");
printf("( 0 )\"\"\"\\\n");
printf("|\"^\"` |\n");
printf("||_/=\\\\__|\n");
return 0;
}
1
2
3
4
5
6
7
8
9
10
2
3
4
5
6
7
8
9
10
Node.js
javascript
console.log(`
|\\_/|
|q p| /}
( 0 )"""\\
|"^"\` |
||_/=\\\\__|
`.trim());
1
2
3
4
5
6
7
2
3
4
5
6
7
PHP
php
|\_/|
|q p| /}
( 0 )"""\
|"^"` |
||_/=\\__|
1
2
3
4
5
2
3
4
5
Python3
python
print("""
|\_/|
|q p| /}
( 0 )"""\
|"^"` |
||_/=\\__|
""".strip())
1
2
3
4
5
6
7
2
3
4
5
6
7
Ruby
ruby
puts '
|\_/|
|q p| /}
( 0 )"""\
|"^"` |
||_/=\\\__|
'.strip
1
2
3
4
5
6
7
2
3
4
5
6
7
Comments
Not supported comment edit and upvote
You can do it on this page if you want.