Comment by hnlmorg

Comment by hnlmorg 2 days ago

2 replies

There’s plenty of LISP packages that support process composition. Also LISPs syntax better suits write once type environments like REPL shells than your average C-derived syntax.

Kinrany a day ago

Any examples? Searching for this is hard.

What would `foo | bar | baz` look like in a lisp?

  • christophilus a day ago

    Something like Clojure’s threading macro, probably:

    (-> (foo) (bar) (baz))