shithub: mc

ref: d4fac4da419b09f014c27b0f4334f1c8f4314faf
dir: /lib/std/die.myr/

View raw version
use "syswrap"
use "types"

pkg std = 
	$noret const die	: (msg : byte[:] -> void)
	pkglocal const iassert	: (cond : bool, msg : byte[:] -> void)
;;

const die = {msg
	write(2, msg)
	suicide()
}

const iassert = {cond, msg
	if !cond
		die(msg)
	;;
}