Skip to content

Commit

Permalink
make pig.cpp not suck
Browse files Browse the repository at this point in the history
  • Loading branch information
DuckBergen authored Aug 12, 2021
1 parent 6e1fb41 commit 7136f5f
Showing 1 changed file with 11 additions and 7 deletions.
18 changes: 11 additions & 7 deletions pig.cpp
Original file line number Diff line number Diff line change
@@ -1,11 +1,15 @@
#include <iostream>

int main() {
std::cout << " __,---.__\n";
std::cout << " ,-' `-.__\n";
std::cout << "&/ `._\\ _\\\n";
std::cout << "/ ''._ \n";
std::cout << "| , ('')\n";
std::cout << "|__,'`-..--|__|--''\n";
static const char* PIG =
" __,---.__\n"
" ,-' `-.__\n"
"&/ `._\\ _\\\n"
"/ ''._ \n"
"| , ('')\n"
"|__,'`-..--|__|--''\n";

int main()
{
std::cout<<PIG;
return 0;
}

0 comments on commit 7136f5f

Please sign in to comment.