Sign in
◑
Theme
go
/
website
/
abdf2b1e732d13be87585a1487ebeea5db092d07
/
.
/
_content
/
talks
/
2015
/
tricks
/
subprocess
/
subprocess.go
blob: 8fb8fc01a62c2cc40709bacac7292521eaaf2ce7 [
file
]
package subprocess
import (
"fmt"
"os"
)
func Crasher() {
fmt.Println("Going down in flames!")
os.Exit(1)
}