I see it too.
Further;
; binary is coded in hexadecimal by default
>> to-integer #{14}
== 20 ; ok
>> to-binary 20
== #{3230} ; That's not right
>> to-integer to-binary 20
== 12848 ; I expected 20, the same value, back.
>> to-binary to-integer to-binary 20
== #{3132383438} ; spinning out of control... etc
Must be a bug.
REBOL/View/Pro 1.1.0.3.1 16-Apr-2001
Anton.
> Can someone help me with the following error? Why can I swap elements of a
> string! with pick and poke, but not the elements of a binary! ?
>
>
> >> list: "1234567890"
> == "1234567890"
> >> poke list 1 pick list 2
> == "2234567890"
> >> list: to-binary "1234567890"
> == #{31323334353637383930}
> >> poke list 1 pick list 2
> ** Script Error: Invalid argument: 50
> ** Where: halt-view
> ** Near: poke list 1 pick list
--
To unsubscribe from this list, please send an email to
[EMAIL PROTECTED] with "unsubscribe" in the
subject, without the quotes.