shithub: mc

ref: 404ed1ddb3faa4fec7ee4fd8fddc5bbdec284bde
dir: /lib/std/option.myr/

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