Also it is often better to use PROBE rather than PRINT for debugging. If you where using it instead of print above, the char! vs string! would have been more obvious.
e.g >> print [1 + 2] 3 >> probe [1 + 2] [1 + 2] =3D=3D [1 + 2] >> a: "12345" =3D=3D "12345" >> a/2 =3D=3D #"2" >> print a/2 2 >> probe a/2 #"2" =3D=3D #"2" -- Allen K -- To unsubscribe from the list, just send an email to lists at rebol.com with unsubscribe as the subject.
