package gox import "fmt" func Go(fun func()) { go func() { if err := recover(); err != nil { fmt.Println(err) } fun() }() }