-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprinter.cpp
More file actions
25 lines (21 loc) · 911 Bytes
/
printer.cpp
File metadata and controls
25 lines (21 loc) · 911 Bytes
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 <string>
#include "printer.hpp"
void printDotLine(){
std::cout << ". . . . . . . . . . . . . . . . . . . . . . . . . . . ." << std::endl;
}
void printTitle(){
std::string firstLine = R"(. ____ _____ ___ _______ __ ___ __ ___ ___ .)";
std::string secondLine = R"(. (( \| |// \\||\\//|||| \\ || // \\||\ |||| \\ .)";
std::string thirdLine = R"(. \\\\ /\ //|=|||| \/ ||||_// || ||=||||\\|||| )).)";
std::string fourthLine = R"(. \_))\V/\V/|| |||| |||| ||__||| |||| \||||_// .)";
printDotLine();
std::cout << firstLine << std::endl;
std::cout << secondLine << std::endl;
std::cout << thirdLine << std::endl;
std::cout << fourthLine << std::endl;
printDotLine();
}
void printLine(){
std::cout << "- - - - - - - - - - - - - - - - - - - - - - - - - - - -" << std::endl;
}