lesson 4 mixmatch cpp
[[lesson_4_mixmatch_cpp]] last edit on Aug 8, 2005 4:08 AM by rescued_by_c

[user02@FC4 Lesson04]$ cat -n mixmatch.cpp
   1  #include <iostream>
   2  using namespace std;
   3
   4  int main()
   5  {
   6     cout << "At age " << 20 << " my salary was " << 493.34 << endl;
   7
   8     return 0;
   9  }
[user02@FC4 Lesson04]$ g++ -o mixmatch mixmatch.cpp
[user02@FC4 Lesson04]$ ./mixmatch
At age 20 my salary was 493.34