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

[REBOL] pipe | rebol

From: rchristiansen:pop:isdfa:sei-it at: 9-Jan-2001 11:14

I thought it might be useful to use a unix-like piping mechanism in REBOL, as follows:
>> |: func [target][do target] >> d: 1 | e: d * 3 | f: e * e
== 9
>>
Have I got it right? Do you see any potential problems? I don't get to use a unix command-line as much as I would like. -Ryan