From 98319f571d8d85eca8e9932041316f2719ea6d3a Mon Sep 17 00:00:00 2001 From: Alekseev Date: Mon, 5 Sep 2022 14:58:32 +0700 Subject: [PATCH] edited main.cpp, added .gitignore --- .gitignore | 1 + main.cpp | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..71e9c16 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +/debug/ \ No newline at end of file diff --git a/main.cpp b/main.cpp index 63aa558..d5a356d 100644 --- a/main.cpp +++ b/main.cpp @@ -4,7 +4,8 @@ using namespace std; int main() { - cout<<"Hello World"; + cout<<"Hello World" << endl; + cout<<"I sleep. Zzz..." << endl; return 0; } \ No newline at end of file