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?