shithub: mc

ref: f75a890bab649f57ee1f2cfffec8c74cc8b0ed49
dir: /lib/std/option.myr/

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