shithub: mc

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

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