shithub: mc

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