(PCC)::[How-to-perform-Exit-operations-in-go-language]::[go]
package main import ( "fmt" "os" ) func main() { defer fmt.Println("!") os.Exit(3) }