shithub: mc

ref: 67608f06ccf0f6a0bf247a49858b8c9fb959f130
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
	;;
;;