Logo

Programming-Idioms

History of Idiom 87 > diff from v12 to v13

Edit summary for version 13 by :
New Go implementation by user [lck]

Version 12

2015-12-25, 11:48:17

Version 13

2016-01-01, 00:46:55

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.

Imports
import "os"
Code
os.Exit(0)
Doc URL
https://golang.org/pkg/os/#Exit