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

[REBOL] Re: (No subject)Date: Mon, 11 Feb 2002 11:31:48 -0700

From: lmecir:mbox:vol:cz at: 12-Feb-2002 10:05

Hi, Here is my trial that eliminates If and Either from the rule: rule: [ (actions: copy []) star: none ['select (star: ['* (append actions [list-dir dir-1])]) | 'insert | 'update | 'delete] some [ star | 'size (append actions [size? dir-1]) | 'modified (append actions [modified? dir-1]) ] 'from set dir-1 file! (print reduce actions) ] b: [SELECT SIZE MODIFIED FROM %/c/autoexec.bat] parse b rule Cheers L