shithub: mc

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