initial git repo setup

This commit is contained in:
Dan 2008-04-28 00:18:59 -07:00
commit f51959afda
2 changed files with 20 additions and 0 deletions

13
gtp.lisp Normal file
View File

@ -0,0 +1,13 @@
(in-package :gtp-handler)
(defun gtp-client ()
(do ((quit? nil))
(= quit? nil)
(dispatch-gtp-command (read-line t))))
(defun dispatch-gtp-command (command-string)
(let* ((commands (split-string (string-downcase command-string) " "))
(command (intern (first commands))))
(case (command)
(

7
packages.lisp Normal file
View File

@ -0,0 +1,7 @@
(in-package :cl-user)
(clc:clc-require :cl-ppcre)
(defpackage gtp-handler
(:use :common-lisp)
(:export gtp-client))