Re: Re:
- Posted by Sabal.Mike at notations.com Jul 25, 2003
- 2426 views
So to answer the original question,
include get.e
object yy
yy = value(xx)
if yy[1] = GET_SUCCESS then
? yy[2] * 2 -- prints 410
end if
The value statement is what you need. See library.doc for more
details.
>>> cklester at yahoo.com 07/25/03 04:18PM >>>
Remember also that
xx = {50,48,53}
is equal to
xx = "205"

