template.cpp 603 B

12345678910111213141516171819202122232425262728293031323334353637
  1. /*
  2. * Programmer: Jonathan Landrum
  3. * Date:
  4. *
  5. * Program: template.cpp
  6. * Purpose: Template.
  7. * Assumptions: None.
  8. */
  9. #include <iostream>
  10. using namespace std;
  11. // --------------------------------------------------
  12. // main():
  13. // --------------------------------------------------
  14. int main () {
  15. // Variables
  16. // Introduce the program
  17. cout << endl;
  18. cout << "---------------------" << endl;
  19. cout << "- Hello World -" << endl;
  20. cout << "---------------------" << endl;
  21. cout << endl;
  22. // Main processing loop
  23. // Return the results
  24. return (0);
  25. } // End main