Logo

Programming-Idioms

History of Idiom 87 > diff from v7 to v8

Edit summary for version 8 by :

Version 7

2015-10-22, 00:56:14

Version 8

2015-10-28, 02:28:20

Idiom #87 Stop program

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

Idiom #87 Stop program

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

Code
exit 0;
Comments bubble
The zero is the return code to the OS.