shithub: mc

ref: 9ea9ad79c78f6cb55ead18303d794dbf77c7ded8
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
	;;
;;