shithub: mc

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