shithub: mc

ref: 198e24abaaa0005cf5a1612a499135a8fc47ed36
dir: /lib/std/option.myr/

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