Files
nterm/assert/assert.go
2022-06-30 06:26:03 +04:00

12 lines
167 B
Go
Executable File

package assert
import (
"github.com/bloeys/nterm/consts"
)
func T(check bool, msg string) {
if consts.Mode_Debug && !check {
panic("Assert failed: " + msg)
}
}