shithub: mc

ref: 2e89856cee5ff88161295f3ea0d200f72eb4d31f
dir: /lib/std/option.myr/

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