shithub: mc

ref: 1ef5877bce5a4fcbe6e68b00f1ba087384d6343c
dir: /libstd/option.myr/

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