select first item value from list code example
Example 1: clojure get list first item
(first '(:alpha :bravo :charlie))
;;=> :alpha
Example 2: how to find first value of an list
// Python
list = [1,2,3]
firstdigit = list[0] // 1
list = ['Hello', 'bye', 'Adios']
firstvalue = list[0] // 'Hello'