/* Craig Persiko
pp2.cpp
CS 110A Practice Problem 2
Simple Hello World program
*/
#include <iostream>
using namespace std;
int main()
{
cout << "Hello, World!\n"; // Display the string.
return 0;
}
/* Compilation and Sample Output on Hills:
[cpersiko@hills ~]$ g++ pp2.cpp
[cpersiko@hills ~]$ a.out
Hello, World!
[cpersiko@hills ~]$
*/