-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.cpp
More file actions
31 lines (27 loc) · 903 Bytes
/
main.cpp
File metadata and controls
31 lines (27 loc) · 903 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
26
27
28
29
30
31
#include <iostream>
#include <string>
void showVersion() {
std::cout << "Hello World! ASCII Art Program - Version "
<< PROJECT_VERSION_MAJOR << "."
<< PROJECT_VERSION_MINOR << "."
<< PROJECT_VERSION_PATCH << std::endl;
}
void showMosque() {
std::cout << R"(
# # # # # # # # # #
# # # # # # # # # # #
# # ## # # ## # # # # ## ## # ### #
##### # # # # # # # # # # # # # # # # #
# # #### # # # # # # # # # # # # # # #
# # # # # # # # # # # # # # # # #
# # ### # # ## # # ## # # ### #
)" << std::endl;
}
int main(int argc, char* argv[]) {
if (argc > 1 && std::string(argv[1]) == "--version") {
showVersion();
} else {
showMosque();
}
return 0;
}