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