Hacker News new | ask | show | jobs
by tmtvl 1032 days ago
I like using arrow-macros (threading macros) myself;

  (-> report
      revised
      revised
      revised
      revised
      revised
      revised
      revised)
1 comments

That is not in the style of srfi-197.

    (chain report
           (revised _)
           (revised _)
           ...)
There are benefits to this approach, such as it handling both applying returned lists and multiple return values by default.