shithub: mc

ref: 373ca257592c99f1fc300e8b2a97e5aa6a13eae2
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
	;;
;;