// <CHOP -- NEED NOT COPY -- FYI> // 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, which you // can run by typing either: // my_program // ...or... // ./my_program // ...depending on how your UNIX PATH variable is set up. // </CHOP -- NEED NOT COPY -- FYI> // START copying from NEXT line: /*------- Signature: main: void -> int Purpose: either: testing program for the function <name> OR <describe the program being written -- what it needs, if anything, and what it does> Examples: <describe what happens when this main is run -- include actual example output when applicable> by: last modified: --------*/ #include <cstdlib> #include <iostream> #include <string> #include <cmath> // #include "called_below.h" using namespace std; int main() { cout << boolalpha; // do something return EXIT_SUCCESS; }