(in-package :cl-user) ;;; Suggested start up file for EECS 325 ;;; Platform: Allegro Common Lisp on Windows ;;; ;;; Place this file in the Allegro directory, e.g. C:\Program Files\acl82\ ;;; 09/29/2010 CKR: added code to set initial package to CS325-USER ;;; Turn off the list printing limits. (setq tpl:*print-length* nil) (setq tpl:*print-level* nil) ;;; Load cs325.lisp to create the cs325 package. (eval-when (:compile-toplevel :load-toplevel :execute) (load "c:/courses/cs325/cs325.lisp") ;; CHANGE TO MATCH YOUR SETUP (setf (ide:initial-package (cg:configuration ide:*ide-system*)) :cs325-user) )