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

[REBOL] Re: syntax across languages

From: maximo:meteorstudios at: 6-Nov-2003 11:09

> -----Original Message----- > From: Joel Neely [mailto:[joel--neely--fedex--com]] > Sent: Thursday, November 06, 2003 9:39 AM > To: [rebol-list--rebol--com] > Subject: [REBOL] Re: syntax across languages > > multitask-into-stress: func [word [word!] selves [block!]] [ > forever [ > foreach role selves [ > do get in role word > ] > ] > ] >
The above is proof that rebol is an expresive language. ;-) here's my life dialect life: func [priorities [block!]] [ task: wait [familly job projects] either find in priorities task [ do task ][ append projects task ] ] note that the only control I have is in priorities. The task wait order is hard wired... ;-) -MAx