C++: Lab 1

The times they are a-changin’.

This post seems to be older than 18 years—a long time on the internet. It might be outdated.


//Name: Andrew Ferguson
//Date: 1/17/2005
//Purpose: To see if I can get this work!
#include <iostream.h>

void main()
{
	cout << "Hello\n";
	cout << "Goodbye\n";
}
0