home *** CD-ROM | disk | FTP | other *** search
/ World of A1200 / World_Of_A1200.iso / programs / system / vercheck / examples / vertestb < prev    next >
Text File  |  1995-02-27  |  506b  |  31 lines

  1. VerCheck 34
  2. if warn
  3.   echo "Wow! You've got V34."
  4. else
  5.   echo "Bah! You ain't got V34."
  6. endif
  7. VerCheck 34>
  8. if warn
  9.   echo "Wow! You've got V34 or greater."
  10. else
  11.   echo "Bah! You ain't got V34."
  12. endif
  13. VerCheck 37
  14. if warn
  15.   echo "Wow! You've got V37."
  16. else
  17.   echo "Bah! You ain't got V37."
  18. endif
  19. VerCheck 37>
  20. if warn
  21.   echo "Wow! You've got V37 or greater."
  22. else
  23.   echo "Bah! You ain't got V37."
  24. endif
  25. VerCheck 38>
  26. if warn
  27.   echo "Wow! You've got V38 or greater."
  28. else
  29.   echo "Bah! You ain't got V38."
  30. endif
  31.