shithub: mc

ref: 99cc92c31eadabe470d781af2f5fd4410594e10e
dir: /lib/std/option.myr/

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