Yu-Gi-Oh! Deck Building and Card Inventory Management web interface written in Common Lisp, utilizing HTMX.
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

18 linhas
515B

  1. #|
  2. preamble.lisp
  3. For whatever reason, I don't keep this project in my
  4. ~/quicklisp/local-projects directory. So I have this preamble bit
  5. of code that will push your current directory to Quicklisp.
  6. |#
  7. ;; Assume the project is in the current working directory. It's
  8. ;; harmless, probably.
  9. (eval-when (:compile-toplevel :load-toplevel :execute)
  10. (pushnew (uiop:getcwd) ql:*local-project-directories*)
  11. ;; Load em' up. We use SLY so load SLYNK instead of SWANK here.
  12. (ql:quickload '(:cl-deck-builder2 :slynk)))