shithub: mc

ref: 09d82f137706f80e53cdb12b12cd0e52217aeb57
dir: /lib/std/option.myr/

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