REBOL Programming/unless

      USAGE:

      UNLESS condition block 
      

      DESCRIPTION:

      Evaluates the block if condition is not TRUE.

      UNLESS is a native value.

      ARGUMENTS

      • condition -- (Type: any)
      • block -- (Type: block)

      SOURCE CODE

      unless: native[
          "Evaluates the block if condition is not TRUE." 
          condition 
          block [block!]
      ]
      
      Last modified on 13 November 2012, at 10:43