Is there a line of code that will terminate the program?
Something like python\'s sys.exit()?
sys.exit()
throw back to main which should return EXIT_FAILURE,
or std::terminate() if corrupted.
(from Martin York's comment)