shithub: mc

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

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