shithub: mc

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

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