shithub: mc

ref: 83eef0360e0c66ff50d2874e1829470101e2afab
dir: /lib/std/option.myr/

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