diff --git a/Chapter 2/test.cpp b/Chapter 2/test.cpp index d11787a..76bd069 100644 --- a/Chapter 2/test.cpp +++ b/Chapter 2/test.cpp @@ -1,12 +1,9 @@ #include - int -main -() { using - namespace - std; cout - << -"Come up and C++ me some time." -; cout << -endl; cout << -"You won't regret it!" << -endl;/*cin.get();*/return 0; } +int main() { + using namespace std; + cout << "Come up and C++ me some time."; + cout << endl; + cout << "You won't regret it!" << endl; + /*cin.get();*/ + return 0; +}