Sign in
go
/
website
/
e5f882dc959d83ed3c1dc413c468ea89d59c3c52
/
.
/
_content
/
talks
/
2014
/
testing
/
subprocess
/
subprocess.go
blob: 8fb8fc01a62c2cc40709bacac7292521eaaf2ce7 [
file
] [
log
] [
blame
]
package subprocess
import (
"fmt"
"os"
)
func Crasher() {
fmt.Println("Going down in flames!")
os.Exit(1)
}