shithub: mc

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