shithub: mc

ref: 97836cfa040efbbbda0f6da6b8df94a4553c9709
dir: /lib/std/option.myr/

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