Association Lisps π₯
Running:
$ brew install sbcl
$ sbcl --script association.cl| (setf jacob | |
| '( | |
| (first-name Jacob) | |
| (last-name Clark))) | |
| (list | |
| (first (rest (assoc 'first-name jacob))) | |
| (first (rest (assoc 'last-name jacob))))) ; Evals -> (JACOB CLARK) |