shithub: mc

ref: 52af0fabaa1b7b36a1848f53b1abb4538dcebabc
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
	;;
;;