shithub: mc

ref: cde6c5f1152664a737ad8fd963ae2d354a07a99e
dir: /lib/std/option.myr/

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