shithub: mc

ref: 899ff84cffa469cbeeaa6fc1e6e9a6294ea5e5cc
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
	;;
;;