/* A Language for Complexity * welcome.cpp * OOP244 * May 6 2009 * * To compile on matrix: c++ welcome.cpp * To run compiled code: a.out */ #include using namespace std; int main ( ) { printf("Welcome to OOP244\n"); return 0; }