clwars.lisp 223 B

12345678910
  1. (defun reload()
  2. (asdf:load-system 'clwars))
  3. (defun main ()
  4. (format t *menu-splash*)
  5. (format t "Press any key to start or q to quit: ")
  6. (if (string-not-equal (prompt-read "") "q")
  7. (progn
  8. (cls)
  9. (new-game))))