Skip to Content
0
Former Member
Jul 07, 2009 at 09:31 AM

Printing many times the same string

29 Views

Somehow I could not manage it: I want to print i the same detail 250 times the same string, e.g. "@#@;" I was trying with

local stringvar a:="@#@;";

local numbervar i:=1;

for i:= 1 to 249 do

a;

i

but I get the figure 250 but I want: @#@;@#@;@#@;@#@;@#@;@#@; (250 times)

What to do?