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

[REBOL] Re: Rebol Server Pages: erebol 2

From: joel::neely::fedex::com at: 6-Feb-2002 14:51

Hi, Petr, Petr Krenzelok wrote:
> [m--koopmans2--chello--nl] wrote: > > > > >This will take time. Fixing the leak in 4.3 effectively broke > > the marshaling :( > > > > eh, what is "marshaling"? :-) > > -pekr- >
Transforming the internal representation of some entity in a program (object/data/structure/whatever) into a form suitable for external transport. Especially if the external form is specifically defined to be independent of whatever boxen may be at either end of the transport. -jn- -- ; sub REBOL {}; sub head ($) {@_[0]} REBOL [] # despam: func [e] [replace replace/all e ":" "." "#" "@"] ; sub despam {my ($e) = @_; $e =~ tr/:#/.@/; return "\n$e"} print head reverse despam "moc:xedef#yleen:leoj" ;