shithub: mc

ref: 373facebac71ac1e6743d30152543627ad115cf7
dir: /lib/std/option.myr/

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