Skip to content

Instantly share code, notes, and snippets.

@rm-hull
Last active December 26, 2015 05:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rm-hull/7101722 to your computer and use it in GitHub Desktop.
Save rm-hull/7101722 to your computer and use it in GitHub Desktop.
(ns recurring.example
(:require [enchilada]))
(loop [xs [[1 1 1] [2 2 2] [3 3 3]]]
(when-let [[a b c] (first xs)]
(println a b c)
(recur (rest xs))))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment