shithub: mc

ref: 3eac4fd0e131b25af66ac9e0952cafab6b0b965f
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
	;;
;;