shithub: mc

ref: 4efbb423950483a2deec1384c732a5d34fe639c7
dir: /lib/std/option.myr/

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