shithub: mc

ref: 869b4e253befd710b3560d5842436a8aa0008cef
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
	;;
;;