home *** CD-ROM | disk | FTP | other *** search
/ Exploring the Boundaries of Sound & Vision / MM_CD.iso / cakedemo / pro5 / pd.1 / need20.cal < prev    next >
Encoding:
Text File  |  1996-06-18  |  386 b   |  13 lines

  1. ; Require version 2.0 or higher of CAL; if not, issue error message and exit.
  2. ; This is intended to be (include)'d by other CAL programs.
  3. ;
  4. ; Written to be compatible with earlier versions:
  5. ;    - (error) didn't display string argument to user, so use (pause) first instead
  6.  
  7. (if (< VERSION 20)
  8.     (do
  9.         (pause "This CAL program requires CAL version 2.0 or higher")
  10.         (exit)
  11.     )
  12. )
  13.