CPP_git_test/src/main.cpp

9 lines
391 B
C++

#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
}