From d39ad931117c334f111833f49ab331e9d1c39dfe Mon Sep 17 00:00:00 2001 From: Rishabh Raghwendra Date: Tue, 19 May 2020 20:00:48 +0530 Subject: [PATCH 1/3] added .gitignore --- .gitignore | 1 + 1 file changed, 1 insertion(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..42061c0 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +README.md \ No newline at end of file From 3980f8af805e2d993029cb256affc4bc12c89c26 Mon Sep 17 00:00:00 2001 From: Rishabh Raghwendra Date: Tue, 19 May 2020 20:09:35 +0530 Subject: [PATCH 2/3] added more in .gitignore --- .gitignore | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 42061c0..78bd744 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,5 @@ -README.md \ No newline at end of file +README.md +Hello_world.sln +Hello_world.vcxproj +Hello_world.vcxproj.user +Hello_world.vcxproj.filters \ No newline at end of file From 3efd65111d669c07b48b62ff8b3d752a137ea945 Mon Sep 17 00:00:00 2001 From: Rishabh Raghwendra Date: Tue, 19 May 2020 20:10:57 +0530 Subject: [PATCH 3/3] added Rishabh.cpp --- Rishabh.cpp | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 Rishabh.cpp diff --git a/Rishabh.cpp b/Rishabh.cpp new file mode 100644 index 0000000..1e1fd9a --- /dev/null +++ b/Rishabh.cpp @@ -0,0 +1,20 @@ +// Hello_world.cpp : This file contains the 'main' function. Program execution begins and ends there. +// + +#include + +int main() +{ + std::cout << "Hello World!\n"; +} + +// Run program: Ctrl + F5 or Debug > Start Without Debugging menu +// Debug program: F5 or Debug > Start Debugging menu + +// Tips for Getting Started: +// 1. Use the Solution Explorer window to add/manage files +// 2. Use the Team Explorer window to connect to source control +// 3. Use the Output window to see build output and other messages +// 4. Use the Error List window to view errors +// 5. Go to Project > Add New Item to create new code files, or Project > Add Existing Item to add existing code files to the project +// 6. In the future, to open this project again, go to File > Open > Project and select the .sln file