shithub: mc

ref: 7eaed70990b148db0bebdcc218280cacff932ac4
dir: /lib/std/option.myr/

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