ref: 2b28c30518e4aeb4bfc5592773662b89c58e8663
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() ;; }