From da2c8aa86de61fde5dc455dbd617b3a5ffbf8e75 Mon Sep 17 00:00:00 2001 From: Mark B Date: Mon, 28 Jun 2021 17:29:15 -0400 Subject: [PATCH] Initial commit --- main.cpp | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 main.cpp diff --git a/main.cpp b/main.cpp new file mode 100644 index 0000000..24e4016 --- /dev/null +++ b/main.cpp @@ -0,0 +1,8 @@ +#include // this includes the standard lib to input and output stuff +using namespace std;// without this we would have to write std::cout insted of just cout + +int main() { + cout << "Soup \n"; // this prints soup in the command line and the \n means go down a line + cout << "Is good"; + return 0;// this tells all the functions and code to go back to main aka the start +}