shithub: mc

ref: ec0241536de591d2f0f75a84ed3ee71cad8c5aae
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
	;;
;;