Skip to content

Instantly share code, notes, and snippets.

@4mitch
Created April 28, 2019 17:29
Show Gist options
  • Save 4mitch/fae1eec1bf2693115d6d665ed939f4b8 to your computer and use it in GitHub Desktop.
Save 4mitch/fae1eec1bf2693115d6d665ed939f4b8 to your computer and use it in GitHub Desktop.
Treat a sequence as a table in Clojure
(->>
'(1 2 3 4)
(map #(Math/pow % 2))
(partition 2)
(map println)
dorun
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment