Initial commit
This commit is contained in:
commit
da2c8aa86d
1 changed files with 8 additions and 0 deletions
8
main.cpp
Normal file
8
main.cpp
Normal 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
|
||||
}
|
Loading…
Reference in a new issue