shithub: mc

ref: 67e077fe5811a7bc218cb58de5a32e337417268c
dir: /lib/std/option.myr/

View raw version
pkg std =
	type option(@a) = union
		`Some @a
		`None
	;;
;;