shithub: mc

ref: 003485264d138db7f41fcde610fa6cbc19944035
dir: /lib/std/option.myr/

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