[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

What's the deal on using numericref's args in function imbedded in afor loop?


  • To: omega-list@xxxxxxxxxx
  • Subject: What's the deal on using numericref's args in function imbedded in afor loop?
  • From: Ernie Bonugli <ebonugli@xxxxxxxx>
  • Date: Sun, 23 Mar 2003 15:52:06 -0800

PureBytes Links

Trading Reference Links

,

Should this work?  Note the argument in foo function is a numericref.

for i = 0 to 4 begin
  result = foo( array[i] );
  end;

Ok the above does not work for me, so how about this:

for i = 0 to 4 begin
  value3 = array[i];
  result = foo( value3 );
  array[i] = value3;
  end;

Still no cigar, Any ideas?

Regards,
Ernie
ebonugli@xxxxxxxx