home *** CD-ROM | disk | FTP | other *** search
/ Sound, Music & MIDI Collection 2 / SMMVOL2.bin / DEMO / PRG / CWALKPRO.ZIP / DISK1 / NEED20.CA_ / NEED20.bin
Encoding:
Text File  |  1994-06-21  |  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.