Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions 2017/00_primitivas/cpp/nombre.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,11 @@

using namespace std;

int
main()
int main(void) // it is good to write this as this clarifies the main() more
{
cout << "The World is a Vampire!" << endl;
cout<<"We can also use "
<<"overload this operator";

return 0;
}