gobyexample/xx-exits.go
Mark McGranaghan 4928f24e79 more
2012-09-16 18:31:45 -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