shithub: mc

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