Please send questions to
st10@humboldt.edu .
// then you can compile this program by typing AT the UNIX prompt
// (assuming this main function is in a file named my_program.cpp)
// (including the .cpp or .o files for EVERY function or class INVOLVED
// in this program)
// g++ my_program.cpp something.cpp -o my_program
//
// if successful, you get an executable program my_program as a result.
/*-----
Signature: main: void -> int
Purpose: either:
<describe the program being written> OR
testing program for the functions <f1>, <f2>, ...
Examples: <describe, in prose, what the effect of running this
main() function should be>
by:
last modified:
-----*/
#include <iostream>
#include <string>
// #include "something.h"
using namespace std;
int main()
{
// do something
return EXIT_SUCCESS;
}