ACCESSY HASKELL LIST Élément

--Haskell Lists' are 0 based
--Let xs be a list from where we want the n-th element
?> xs !! n

--Example
?> [1, 2, 3] !! 1
?> 2
theRealCb