Hacker News new | ask | show | jobs
by pfdietz 427 days ago
It's easy enough to add -> (and related arrow operators) to Common Lisp as macros.

https://github.com/hipeta/arrow-macros

The common complaint that Common Lisp lacks some feature is often addressed by noting how easy it is to add that feature.

1 comments

Besides arrow-macros there's also cl-arrows, which is basically exactly the same thing, and Serapeum also has arrow macros (though the -> macro in Serapeum is for type definitions, the Clojure-style arrow macro is hence relegated to ~>).