shithub: mc

ref: 35c02af69dcc70507e639209eeea181e8e088366
dir: /lib/std/option.myr/

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