shithub: mc

ref: 6b823d1993cb4bf0b01fca63cb926f8979580ce2
dir: /libstd/option.myr/

View raw version
use "types.use"
use "fmt.use"
use "varargs.use"

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