; P03 - Find the K'th element of a list. ; The first element in the list is number 1. (def a (list "a" "b" "c" "d")) (func kth (lst k) (first (slice lst k 1))) ; since slice returns a list, get the element with first (print (kth a 3)) ;(kth a 8) ; panic! there is no 8th element