shithub: mc

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