Fork me on GitHub
#beginners
<
2016-04-03
>
tungsten02:04:23

I am trying to output the results of three expressions. These lists are related to each other and I want to print them off. "By index". Eg. in C I would want to do "printf("%d %d %d", array1[i],array2[i],array3[i])

tungsten02:04:29

anyone know how i can do this in clojure

tungsten02:04:41

I am assuming somehow i need to merge them together in a map or something?

madstap03:04:58

(map str array1 array2 array3) will make a list of strings like you want