shithub: mc

ref: 0558718a57ac7d8f07aba509f7a8f63408d52eee
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
	;;
;;