2
0
mirror of https://git.numenor-labs.us/dsfx.git synced 2025-05-23 16:17:54 +00:00

9 lines
161 B
Go

package assert
// Assert panics if the given truth value is false, with the given message.
func Assert(truth bool, msg string) {
if !truth {
panic(msg)
}
}