2013-09-28, 03:47 PM
SaptaZapta Wrote:"New newline" or "no newline"?
If it's no newline, just go in the text editor, go to the bottom of the file, and add a newline.
Basically it wants an empty line (not even blank or tab) at the end of the file.
Whoops, typo'd that. No newline.
So...
Code:
int main()
{
...
//-| ----------------------------------------------------------------------
//-| Print the copyright notice declaring authorship again.
//-| ----------------------------------------------------------------------
cout << endl << "(c) 2013, yourUnixLogin First Last" << endl << endl;
return 0;
}//mainThat has two endl commands, I guess that doesn't count? (copy/pasted from the code's shell.)

