// The Hello world program.

// pg 46, sec 3.2, Hello, World!

// No guarantees offered. Constructive comments to bs@research.att.com



#include <iostream>

int main()
{
	std::cout << "Hello, world!\n";
}

// note that "return 0;" isn't required in ISO C++
