shithub: mc

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