shithub: mc

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