shithub: mc

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