shithub: mc

ref: 781e188ad6426398558638dfa0984699d64ef413
dir: /lib/std/option.myr/

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

	generic canget	: (o : option(@a) -> bool)
;;