I am very very VERY new to coding with C++, but I have some experience with Python, and wanted to start to learn functions very early on because I know how much of a lifesaver they can be in the future, can anyone help me figure this out
here is my code
#include <iostream>
using namespace std;
int helloWorld()
{
cout << "Hello World!" << endl;
return 0;
}
int main()
{
int helloWorld;
return 0;
}