Initial commit

This commit is contained in:
Return0ne 2021-06-28 17:29:15 -04:00
commit da2c8aa86d

8
main.cpp Normal file
View file

@ -0,0 +1,8 @@
#include <iostream> // 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
}