index
:
deno.git
main
Unnamed repository; edit this file 'description' to name the repository.
User &
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
util.go
blob: 851ee34753e97b7cebca57cd88f5efc37a1fd635 (
plain
)
1
2
3
4
5
6
7
package main func Assert(cond bool, msg string) { if !cond { panic(msg) } }