shithub: mc

ref: 4b5aa67999b756801a310fd0491044e1781220dc
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
	;;
;;