package assert import "strings" func True(cond bool, details ...string) { if !cond { panic(strings.Join(details, " ")) } }