Logo

Programming-Idioms

This language bar is your friend. Select your favorite languages!
  • Lua

Idiom #87 Stop program

Exit immediately.
If some extra cleanup work is executed by the program runtime (not by the OS itself), describe it.

os.exit()
return

Only works in main function.
#include <stdlib.h>
exit (EXIT_SUCCESS);

New implementation...