mirror of
https://github.com/denoland/deno.git
synced 2025-03-03 17:34:47 -05:00
8 lines
81 B
Go
8 lines
81 B
Go
![]() |
package main
|
||
|
|
||
|
func Assert(cond bool, msg string) {
|
||
|
if !cond {
|
||
|
panic(msg)
|
||
|
}
|
||
|
}
|