x/pkg.go
Colin Henry 94bc398ea7
Some checks failed
Go / build (1.19) (push) Failing after 4m5s
added assert function
2024-09-06 20:29:29 -07:00

12 lines
111 B
Go

package x
import (
"errors"
)
func Assert(cond bool, msg string) {
if cond {
panic(errors.New(msg))
}
}