Lets say I have a for loop in Java:
for(Foo foo : foos){ do_something() }
Now lets say I want to translate this list iteration to idiomatic clojure. Whats the best way? I want to return something I can use like an iterator over the foos collection.