shithub: mc

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