gobyexample/055-exits.go
2012-09-20 22:09:22 -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