shithub: mc

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

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