2022-01-31 13:51:50 +00:00
|
|
|
/*##############################################################################
|
|
|
|
## Author: Shaun Reed ##
|
|
|
|
## Legal: All Content (c) 2022 Shaun Reed, all rights reserved ##
|
|
|
|
## ##
|
|
|
|
## Contact: shaunrd0@gmail.com | URL: www.shaunreed.com | GitHub: shaunrd0 ##
|
|
|
|
################################################################################
|
2019-07-21 04:40:44 +00:00
|
|
|
*/
|
|
|
|
|
2022-03-31 20:01:08 +00:00
|
|
|
#include <lib-example.hpp>
|
2019-07-21 04:40:44 +00:00
|
|
|
#include <iostream>
|
|
|
|
|
|
|
|
int main () {
|
|
|
|
PrintHello(5);
|
|
|
|
std::cout << "Press enter to exit the application. \n";
|
|
|
|
std::cin.ignore();
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|