Hi Ed, Ed Dana wrote: <...> > This is because the ^ is not legal. I tried using it in REBOL and it > gave me the following grief: > > ** Syntax Error: Invalid string -- " ] > ** Near: (line 54) Symbol_Set: [ "~" "!" "@" "#" "$" "%" "^" "&" ] > > > It doesn't like the ^ symbol, for whatever reason...
The reason is, that ^ is Rebols escape character: "^/" = return "^-" = tab "^(41)" = ascii character 65 "^^" = a literal ^ Kind regards, Ingo -- To unsubscribe from this list, please send an email to [EMAIL PROTECTED] with "unsubscribe" in the subject, without the quotes.
