/********************************************************************************************
3fileFunc.cpp
Jim Millard
for CO311
string function implementations
********************************************************************************************/
#include <iostream>
using namespace std;
void SayHello()
{
cout << "This program will display the square of a number you input." << endl;
}
void SayPrompt(string prompt)
{
cout << prompt;
}