shithub: mc

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