shithub: mc

ref: 3484982128cc972ffac988ed8dfa23fc6aaf50f4
dir: /lib/std/option.myr/

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