Help for this page

Select Code to Download


  1. or download this
    (if (= major-length 4800) 18
      (if (= major-length 8552) (if (= val 4) 33
                                  (if (= val 1) 18
                                    (error "not handled")))
        (error "not handled")))
    
  2. or download this
    (cond ((= major-length 4800) 18)
          ((= major-length 8552) (cond ((= val 4) 33)
                                       ((= val 1) 18)
                                       (error "not handled")))
          (error "not handled"))
    
  3. or download this
    (ecase major-length
      (4800 18)
      (8552 (ecase var
              (4 33)
              (1 18))))