[user02@FC4 Lesson04]$ cat -n twolines.cpp
1 #include <iostream>
2 using namespace std;
3
4 int main()
5 {
6 cout << "This is line one\nThis is line two\n";
7
8 return 0;
9 }
[user02@FC4 Lesson04]$ g++ -o twolines twolines.cpp[user02@FC4 Lesson04]$ ./twolines
This is line one
This is line two
lesson_4_twolines.cpp, Rev. 2, Last changed on 2005-08-08 04:09, 334 page hits