shithub: mc

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

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