k - gonna have to top that then ;D
hint format ["%1\n2", var1,var2]
would even let you display 2 variables
%1 is the placeholder for the first variable after the output-string, %2 for the second one.
You can also go on, using such placeholders - e.g: %1 %2 %3
and so on.
hint format ["%1 %2 %1", var1, var2]
would also be possible and result in:
var1 var2 var1
~S~ CD