X-Git-Url: http://git.kpe.io/?a=blobdiff_plain;f=README;h=4018bcad909c67d706e9df39db5de57e1b4a8847;hb=d3d73d3ab232a53d1e625f6f57b712c31d6e0f00;hp=d462524952f8bf5c32c2c8114ea2b2cb3236f3f8;hpb=9fb8305e6005c35f639a46d00c626805054e3d4a;p=reversi.git diff --git a/README b/README index d462524..4018bca 100644 --- a/README +++ b/README @@ -11,11 +11,19 @@ advantage of this package, you should read the chapter referenced. Quickstart ========== -If you are using AllegroCL or Lispworks with CLIM, you can play -Reversi with a graphical user interface using the command - (reversi:clim-reversi) +First, you need to download and load ASDF -- the system definition loader. +It's home page is http://www.cliki.net/asdf. After downloading asdf.lisp, load it in your Lisp environment: + (load "asdf.lisp") -Otherwise, you can play in a text mode, such as - (reversi:reversi #'reversi:human (reversi:iago 1)) +Next, you need to load the Reversi ASDF definition file: + (load "reversi.asd") +Next, load the Reversi program itself using ASDF: + (asdf:operate 'asdf:load-op 'reversi) +If you are using AllegroCL, Lispworks, CMUCL, or SBCL with CLIM, you +can play Reversi with a graphical user interface using the command: + (reversi:clim-reversi) + +Otherwise, you can play in a text mode, such as: + (reversi:reversi #'reversi:human (reversi:iago 1))