Last active
December 26, 2015 05:38
-
-
Save rm-hull/7101722 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(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