Mailing List Archive: 49091 messages
  • Home
  • Script library
  • AltME Archive
  • Mailing list
  • Articles Index
  • Site search
 

[REBOL] Re: another tag! issue

From: carl:cybercraft at: 27-Jan-2002 11:43

On 27-Jan-02, Hallvard Ystad wrote:
> Hi again > OK, so I accept that RT wants all characters in tags to be > accessible, so that <a href=""> and <a href = ""> are not alike. But > how about this: >>> print <a href=""> > <a href=""> >>> print join <a href=""> "^/" > <a href="" >> >>> > It seems JOIN <a href=""> "^/" puts in the linebreak too early. Or > am I mistaken again? If I FORM or MOLD the TAG!, it seems to work > fine...
You're mistaken again. (: 'join determines the type of what's returned by the first value it's given, (in certain cases), so this returns a tag...
>> a: join <a href=""> "^/"
== <a href=""
>> type? a
== tag! and this a string...
>> a: join "^/" <a href="">
== { <a href="">}
>> type? a
== string! I said "in certain cases" as it returns a string where joining to a datatype doesn't make sense, as with numbers...
>> join 10 20
== "1020" HTH. -- Carl Read