shithub: mc

ref: 7bb950b74cb32f7609c55277f4504c59379ced63
dir: /libstd/result.myr/

View raw version
use "die.use"

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