forked from yogykwan/design-patterns-cpp
-
Notifications
You must be signed in to change notification settings - Fork 1
/
main.cc
25 lines (24 loc) · 1.2 KB
/
main.cc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#include <iostream>
#include <fstream>
int main() {
std::cout << "\n"
"________ .__ \n"
"\\______ \\ ____ _____|__| ____ ____ \n"
" | | \\_/ __ \\ / ___/ |/ ___\\ / \\ \n"
" | ` \\ ___/ \\___ \\| / /_/ > | \\\n"
"/_______ /\\___ >____ >__\\___ /|___| /\n"
" \\/ \\/ \\/ /_____/ \\/ \n"
"__________ __ __ \n"
"\\______ \\_____ _/ |__/ |_ ___________ ____ ______\n"
" | ___/\\__ \\\\ __\\ __\\/ __ \\_ __ \\/ \\ / ___/\n"
" | | / __ \\| | | | \\ ___/| | \\/ | \\\\___ \\ \n"
" |____| (____ /__| |__| \\___ >__| |___| /____ >\n"
" \\/ \\/ \\/ \\/ "
"\n\n"
" | ~~|~ ' \n"
" |~~\\\\ / |/~/|/~\\ |/~\\ |/~~/~~|\n"
" |__/ \\/ \\_|\\/_| || ||\\__\\__|\n"
" _/ "
"\n" << std::endl;
return 0;
}