Skip to content

Instantly share code, notes, and snippets.

@Liutos
Created April 27, 2014 13:37
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 Liutos/11345793 to your computer and use it in GitHub Desktop.
Save Liutos/11345793 to your computer and use it in GitHub Desktop.
(set lst #(1 2 3))
(set vec [4 5 6])
(set tab {1 => 'a', 2 => 'b'})
(with lst.each do (x)
(Stream.println x))
(with vec.each do (x)
(Stream.println x))
(with tab.each do (k v)
(Stream.println k v))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment