home *** CD-ROM | disk | FTP | other *** search
/ GEMini Atari / GEMini_Atari_CD-ROM_Walnut_Creek_December_1993.iso / files / language / sbprolog / init < prev    next >
Encoding:
Text File  |  1993-10-23  |  522 b   |  15 lines

  1. #!/bin/csh
  2. #
  3. # To initialize SB-Prolog Version 3. You need to run this file before 
  4. # calling SB-Prolog. You may want to # include the file in your .cshrc or 
  5. # .login for convenience.
  6. #
  7. set SBPDIR=/usr/local/sbprolog/v3.0     
  8. set VERSION='Version 3.0 '                      # version number
  9. set MEMORY=1000000                              # 1M to avoid gc's
  10. #
  11.  
  12. echo Using SB-Prolog $VERSION
  13. setenv SIMPATH $SBPDIR/lib:$SBPDIR/modlib:$SBPDIR/cmplib:.
  14. alias sbp $SBPDIR/sim/sbprolog -m $MEMORY $SBPDIR/modlib/\\\$readloop
  15.