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