개 (10172)
Created:
몬생긴 개
Bash
Bash 1
2
3
4
5
echo '|\_/|
|q p| /}
( 0 )"""\
|"^"` |
||_/=\\__|'
C
C 1
2
3
4
5
6
7
8
9
10
#include <stdio.h>
int main(void) {
printf("|\\_/|\n");
printf("|q p| /}\n");
printf("( 0 )\"\"\"\\\n");
printf("|\"^\"` |\n");
printf("||_/=\\\\__|\n");
return 0;
}
Node.js
JavaScript 1
2
3
4
5
6
7
console.log(`
|\\_/|
|q p| /}
( 0 )"""\\
|"^"\` |
||_/=\\\\__|
`.trim());
PHP
PHP 1
2
3
4
5
|\_/|
|q p| /}
( 0 )"""\
|"^"` |
||_/=\\__|
Python3
Python 1
2
3
4
5
6
7
print("""
|\_/|
|q p| /}
( 0 )"""\
|"^"` |
||_/=\\__|
""".strip())
Ruby
Ruby 1
2
3
4
5
6
7
puts '
|\_/|
|q p| /}
( 0 )"""\
|"^"` |
||_/=\\\__|
'.strip