shithub: mc

ref: 332e6294f82885227cef60706b6cdb271e27514a
dir: /lib/std/option.myr/

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