shithub: mc

ref: 8eef2702d6533ca399758c38acedf0f086b93e13
dir: /lib/std/option.myr/

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