shithub: mc

ref: 1b92befa76f09641c30fa751ce33af5ab47c4499
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
	;;
;;