shithub: mc

ref: 61a9e807de75f67fd5467aa671b00935d202f0e3
dir: /libstd/option.myr/

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