shithub: mc

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

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