// a comment at the beginning should state your name
#include <iostream.h>
int main(void)
{
cout << “Hi!”;    // message to user
return 0;  // terminate main and return integer 0
}
/*  this older style of commenting  wraps around thescreen until the terminating symbol is typed. */