X-Git-Url: http://git.kpe.io/?a=blobdiff_plain;ds=sidebyside;f=package.lisp;h=d8617e85a2ff8a5d302b752ae39bdfc6c36526ed;hb=HEAD;hp=95979167cd6168a4d3ac1624fc39ca23daa571ec;hpb=9fb8305e6005c35f639a46d00c626805054e3d4a;p=reversi.git diff --git a/package.lisp b/package.lisp index 9597916..d8617e8 100644 --- a/package.lisp +++ b/package.lisp @@ -1,36 +1,35 @@ ;;;;*************************************************************************** ;;;; ;;;; FILE IDENTIFICATION -;;;; +;;;; ;;;; Name: package.lisp ;;;; Purpose: Package definition for reversi ;;;; Programer: Kevin M. Rosenberg ;;;; Date Started: 1 Nov 2001 ;;;; -;;;; $Id: package.lisp,v 1.3 2002/10/25 13:09:11 kevin Exp $ +;;;; $Id$ ;;;; -;;;; This file is Copyright (c) 2001-2002 by Kevin M. Rosenberg +;;;; This file is Copyright (c) 2001-2003 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. ;;;;*************************************************************************** - (in-package #:cl-user) (defpackage #:reversi - (:use #:common-lisp #:common-lisp-user - #+clisp #:ext - #+clim #:clim - #+clim #:clim-sys) + (:use #:common-lisp + #+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 @@ -46,6 +45,5 @@ #:modified-weighted-squares #:text-reversi - #+clim #:gui-reversi + #+clim #:clim-reversi )) -