PracticeDev/study_cpp/cpp_primer_source_code/Chapter 2/test.cpp

13 lines
224 B
C++

#include <iostream>
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; }