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

[REBOL] Re: issue-to-tuple

From: greggirwin:mindspring at: 15-Apr-2002 17:21

Hi Oldes, << Does anybody know, if there is better way how to convert issue to tuple then this one? issue-to-tuple: func[clr ][ to-tuple load head insert tail insert next clr: mold clr "{" "}" ]
>>
I don't know if it's better, but here's what I came up with from tinkering a bit. issue-to-tuple: func[clr ][ to-tuple debase/base clr 16 ] --Gregg