shithub: mc

ref: 580c8e89e13fedf29bb809d749ba47a69e5fe68c
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
	;;
;;