Author Topic: echoing letters into the console  (Read 298 times)

I need to echo a letter into the console, and double it up on that same line depending on the number from a variable

example:

%a=3;

>echos aaa into the console
« Last Edit: July 18, 2012, 07:21:33 AM by Conservative »

For(%i=0; %i<%a; %i++)
   %s = %s @ "a";
Echo(%s);

For(%i=0; %i<%a; %i++)
   %s = %s @ "a";
Echo(%s);
Thanks