Post Reply 
parse var in a cycle (like j -> Cj)
03-08-2015, 12:08 PM
Post: #2
RE: parse var in a cycle (like j -> Cj)
Would using lists work for you? Something like:

Code:

EXPORT Varb()
BEGIN
local n, CL:={'C0', 'C1', 'C2'} ;

for n from 1 to length(CL) do
  print(CL(n));
end;

END;
Find all posts by this user
Quote this message in a reply
Post Reply 


Messages In This Thread
RE: parse var in a cycle (like j -> Cj) - DrD - 03-08-2015 12:08 PM



User(s) browsing this thread: 1 Guest(s)