$ cat webpage.cpp #include <iostream> using namespace std; int main(int argc, char * argv[]) { cout << "Under Construction" << endl; return 0; } $ g++ webpage.cpp -o webpage $ ./webpage Under Construction