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

[REBOL] Re: Reverse (get to-word string!)

From: chris::ross-gill::com at: 28-Sep-2001 6:20

Hi Ammon,
> Now that I have the ability reference an object from a string, is it > possible to make an object reference into a string? Like this: > > >>a: layout [ > [ text "this is an object" > [] > >>to-string a > == "?object?" > > But have it return "a"
Try:
>> a: layout [
[ text "this is an object" [ ]
>> mold a
== { make object! [ type: 'face offset: 25x25 size: 132x59 span: none pane: [ make object! [ ...
>>
- Chris