shithub: mc

ref: 1f72f84ebe8aef83699ec8c75c5b754279bbd03d
dir: /lib/std/option.myr/

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