shithub: mc

ref: 0aa78af458fa7259feb143d87ed2798d6dd5c59c
dir: /libstd/result.myr/

View raw version
use "die.use"

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