Fork me on GitHub
#beginners
<
2016-06-18
>
renan10:06:17

hi guys, I'm reading a CSV file, and return a LazySeq... How to use get for LazySeq? My CSV: (["Arrowhead Stadium" "76416" "76416" "Kansas City Missouri" "Grass" "FALSE" "KC" "1972" "GHCND:USC00234154" "None" "910"] ["Bank of America Stadium" "73778" "73778" "Charlotte North Carolina" "Grass" "FALSE" "CAR" "1996" "GHCND:USW00013881" "None" "751"]) Try GET: (get CSV 2)

danlebrero11:06:41

try (nth CSV 2)

danlebrero11:06:06

“get” is for indexed collections (so maps or vectors)

renan11:06:59

@danlebrero thanks, It works with nth 😀