--- In amibroker@yahoogroups.com, "Ed Hoopes" <[EMAIL PROTECTED]> wrote:
>
> I use printf as a quick and dirty way to see values of variables for
> debugging purposes. Like:
> 
> printf("MyVar = " + MyVar + "\n" );
> 
> The output comes out in the Interpretation window.
> 
Shorthand notation for above code that achieves same effect:

"MyVar = " + MyVar;

JD

Reply via email to