shithub: mc

ref: 011368e3394ba7691d7f4f9ca61bebf82d53ecfc
dir: /libstd/option.myr/

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