-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhello_world.cpp
More file actions
24 lines (22 loc) · 1006 Bytes
/
hello_world.cpp
File metadata and controls
24 lines (22 loc) · 1006 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
//hello_world.cpp
//This file is to test this new repository.
#include <iostream>
#include <string>
int main(void)
{
const std::string hello_world =
"\
####################################################################\n\
#### ## ## ## ####### ######### #######\n\
###### ###### ##### ########### ########### ########## ###### ######\n\
###### ###### ##### ########### ########### ######### ######## #####\n\
###### ###### ##### ########### ########### ######### ######## #####\n\
###### ##### ##### ########### ######### ######## #####\n\
###### ###### ##### ########### ########### ######### ######## #####\n\
###### ###### ##### ########### ########### ######### ######## #####\n\
###### ###### ##### ########### ########### ########## ###### ######\n\
#### ## ## ## ## #### #######\n\
####################################################################\n\
";
std::cout << hello_world << std::endl;
}