> root [4] #include <iostream.h>
> Warning: File "iostream.h" already loaded
> root [5] cout << "hello world." << endl;
> Error: No symbol cout in current scope FILE:/tmp/31179faa LINE:1
hi Steve,
the following works for me - don't ask why (!):
root [0] #include <iostream.h>
Warning: File "iostream.h" already loaded
root [1] .U iostream.h
root [2] #include <iostream.h>
root [3] cout << "hi" << endl;
hi
-pasha