shithub: mc

ref: 0f945628a2af04425ddfd3117b890c6168eeb381
dir: /lib/std/option.myr/

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