shithub: mc

ref: 1536f46ebd0795367f7490b079b5aede0c970fcb
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
	;;
;;