shithub: mc

ref: 0139ee45f197942d81737539f64d9723968181ba
dir: /lib/std/option.myr/

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