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

[REBOL] Re: If without a THEN

From: john:thousand-hills at: 9-Aug-2001 18:01

If has no then or else argument. It will either operate or return "false". Try the EITHER function. EITHER argument [ DO IF TRUE ] [ DO IF FALSE ] Example: either d > 100 [ print d ] [ print d + 100 ] john else At 02:41 PM 8/9/2001 -0400, you wrote: