shithub: mc

ref: 2a6476bbf9dcafc868e6113c2d08b0fd34fc225c
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
	;;
;;