Yu-Gi-Oh! Deck Building and Card Inventory Management web interface written in Common Lisp, utilizing HTMX.
Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.

18 wiersze
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)))