shithub: mc

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

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