Hello,
I'm trying to switch from Python to Delphi and, for quick debugging, I slightly miss Python's print() function, which enables you to print whatever type variables. For example, the following
print(int_var, str_var, dict_var)
prints integer, string, dictionary type variables in one go, so I don't have to convert each variable to string and concatenate them. Could you suggest me a method/function/tool/whatever to achieve similar functionality (in VCL application)?