shithub: mc

ref: 2a6089aa2df2421b5069e001190b0a60a6611c4d
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
	;;
;;