X-Git-Url: http://git.kpe.io/?a=blobdiff_plain;f=package.lisp;h=a57438e130af6f3b675b90fc68432a336817f7e9;hb=ba049b69a9a401315a9e1b9ed862273c799e1550;hp=cb7fbce21bd0b50f312b624b2b6bb7da48a10eaf;hpb=b29c5d666cbd1d0c08d4da49b32e4ed41c6dabba;p=reversi.git diff --git a/package.lisp b/package.lisp index cb7fbce..a57438e 100644 --- a/package.lisp +++ b/package.lisp @@ -2,31 +2,35 @@ ;;;; ;;;; FILE IDENTIFICATION ;;;; -;;;; Name: package.cl +;;;; Name: package.lisp ;;;; Purpose: Package definition for reversi ;;;; Programer: Kevin M. Rosenberg ;;;; Date Started: 1 Nov 2001 -;;;; CVS Id: $Id: package.lisp,v 1.1 2002/10/25 08:36:42 kevin Exp $ ;;;; +;;;; $Id: package.lisp,v 1.4 2002/10/27 22:04:56 kevin Exp $ +;;;; +;;;; This file is Copyright (c) 2001-2002 by Kevin M. Rosenberg +;;;; +;;;; Reversi users are granted the rights to distribute and use this software +;;;; as governed by the terms of the Lisp Lesser GNU Public License +;;;; (http://opensource.franz.com/preamble.html), also known as the LLGPL. ;;;;*************************************************************************** -(declaim (optimize (speed 1) (debug 3) (safety 3))) - -(in-package :cl-user) +(in-package #:cl-user) -(defpackage :reversi - (:nicknames :o) - (:use :common-lisp :common-lisp-user - #+clisp :ext - #+clim :clim - #+clim :clim-sys) +(defpackage #:reversi + (:use #:common-lisp #:common-lisp-user + #+clisp #:ext + #+clim #:clim + #+clim #:clim-sys) #+clim (:shadowing-import-from :clim :pathname) #+clim (:shadowing-import-from :clim :interactive-stream-p) #+clim (:shadowing-import-from :clim :boolean) + (:export #:reversi #:random-reversi-series @@ -40,6 +44,7 @@ #:count-difference #:weighted-squares #:modified-weighted-squares - #+clim #:greversi -)) + #:text-reversi + #+clim #:clim-reversi +))