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