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

[REBOL] Re: Newest Dillema.

From: greggirwin:mindspring at: 6-Mar-2003 13:10

Hi Ed, ED> >> Test: [ a: "b" "Test me" ] ... ED> So, how do I get the following results? ED> >> ForEach Item Test [ Print Magic-Function Mold Item ] ED> a: ED> "b" ED> "Test me"
>> test: [ a: "b" "Test me" ]
== [a: "b" "Test me"]
>> foreach item test [print mold :item]
a: b Test me -- Gregg