Yu-Gi-Oh! Deck Building and Card Inventory Management web interface written in Common Lisp, utilizing HTMX.
Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

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