(in-package :cl-user) ;;; Suggested start up file for CS 325 ;;; Platform: Allegro Common Lisp on Linux ;;; ;;; Place this file in your home directory, i.e., ~/clinit.cl ;;; 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 "~/courses/cs325/cs325.lisp")) ;; CHANGE TO MATCH YOUR SETUP