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

[REBOL] Re: to/make datatype!

From: greggirwin:mindspring at: 16-Oct-2002 13:59

Hi Joel, Tough one! I don't know that this is much better, but for versions that support the serialized format of data, you can do this: to-datatype: func [s [string!]] [ load rejoin [ "#[datatype! " s either #"!" = last s ["]"] ["!]"] ] ] --Gregg