shithub: mc

ref: b321f9668ab0b35228945ab9481e6d7a27fe635d
dir: /lib/std/result.myr/

View raw version
use "die.use"

pkg std =
	type result(@a, @b) = union
		`Ok	@a
		`Fail	@b
	;;
;;