var_dump or alternative?

this decl looks wrong

Public Sub var_dump(ParamArray vDumps() As Variant)

this implies a param array of arrays
Is that what you meant ?

probably needs to be

Public Sub var_dump(ParamArray vDumps As Variant)

and vDumps is still treated an array

and no forwarding the paramarray to a function declared as “vDumps() as variant” doesnt work
<https://xojo.com/issue/20164>