shithub: mc

ref: 9ee86f915781eb5acfabfaf482f123a5da162ff3
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
	;;
;;