Last active
November 2, 2016 22:32
-
-
Save agam/a9cd408f6ee91c29b64b7fb393dac4c6 to your computer and use it in GitHub Desktop.
Basic CL quick start in SBCL, using `rutilsx`
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;; Step 1: Get the package | |
(ql:quickload "rutilsx") | |
;; Step 2: Use it | |
(use-package :rutilsx) | |
;; Unfortunately, there is a collision between RUTILS.MISC:VOID and SB-ALIEN:VOID, | |
;; so select one of the two restarts to continue ... | |
;; Step 3: Turn on the readtable (for convenient vector/hash literals) | |
(named-readtables:in-readtable rutilsx-readtable) | |
;; This may have changed, you might need (named-readtables:in-readtable rutils.readtable:rutils-readtable) | |
;; Step 4: Enjoy! |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Note: There is a conflict between the vector literal (e.g.
#v(1 2 :foo "bar")
) and something withinSLY
(but .. it's not a big deal, so either ignore it, or stick toSLIME
)