mirror of
https://github.com/denoland/deno.git
synced 2025-09-27 12:49:10 +00:00
7 lines
81 B
Go
7 lines
81 B
Go
package main
|
|
|
|
func Assert(cond bool, msg string) {
|
|
if !cond {
|
|
panic(msg)
|
|
}
|
|
}
|