Signature
String var_dump(StringMap t, String prefix = "", String postfix = "\n") String var_dump(StringList t, String prefix = "", String postfix = "\n") String var_dump(DValue t, String prefix = "", String postfix = "\n")
Parameters
t : object to be dumped into a string
return value : string containing a human-friendly representation of 't'
Returns a string representation of t intended for debugging.
Example
DValue user; user["name"] = "Ada"; user["role"] = "engineer"; print(var_dump(user));
Output
name: Ada role: engineer