diff --git a/2017/00_primitivas/cpp/nombre.cpp b/2017/00_primitivas/cpp/nombre.cpp index 375054cd..fb14d489 100644 --- a/2017/00_primitivas/cpp/nombre.cpp +++ b/2017/00_primitivas/cpp/nombre.cpp @@ -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; }