Re: How can we copy an integer's value to a sequence?
Hello Bill,
>How can we copy an integer's value to a sequence?
Bernies reply to this question was perfectly correct, but just
in case you wanted to know how to copy an integer as specific
element of a sequence here's how
integer i
sequence s
i = 5
s = {1,2,3}
s [2] = i -- [2] being the element number
? s -- s is now: {1,5,3}
hope this helps,
Lewis Townsend
________________________________________________________________________
Get Your Private, Free E-mail from MSN Hotmail at http://www.hotmail.com
|
Not Categorized, Please Help
|
|