gobyexample/xx-exit.go
Mark McGranaghan 43bbea1d76 more
2012-09-16 17:38:51 -07:00

15 lines
154 B
Go

package main
import "os"
func main() {
os.Exit(3)
}
// $ go run xx-exit.go
// exit status 3
// $ go build xx-exit.go
// $ ./xx-exit
// $ echo $?
// 3