How to get the first element, second etc of a tuple?

  1. 96 is a single value, not a sequence of values.
  2. Some options to consider:
    • [:div (first info)]
    • [:div (for [[id, name] (partition 2 info)] id)]
1 Like