ref: 8a8f41b17cb8c2f51b26e3e3a541e7b0a876ec3c
dir: /lib/std/assert.myr/
use "fmt.use"
use "syswrap.use"
use "varargs.use"
pkg std =
const assert : (cond : bool, fmt : byte[:], args : ... -> void)
;;
const assert = {cond, msg, args
var ap
ap = vastart(&args)
if !cond
std.fputv(2, msg, &ap)
suicide()
;;
}