shithub: mc

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