/***************************************
 4b_main.cpp

 Example source file for section 4a
 of the LoomSoft article: Organizing your Project

 Web: http://loomsoft.net
 Email: jay@loomsoft.net
***************************************/
#include <iostream.h> //Required header file for i/o streams
#include "ask_question.h"

int main() // The main function. This is where the program starts
{
	cout << "Hello world!" << endl; // Output a hello statement
	ask_question(); // Call the function called ask_question.
	return(0); 
} 