// testcout.cc
// very simple test of the C++ compiler and runtime

#include <iostream.h>     // cout

int main()
{
  cout << "testcout: works\n";
  return 0;
}
