View Problem

Fetch an element of a list by index

Given the list [One, Two, Three, Four, Five], fetch the third element ('Three')
ExpandDiskEdit
fsharp
let result = List.nth ["One"; "Two"; "Three"; "Four"; "Five"] 2
DiskEdit
clojure
(nth '[One Two Three Four Five] 2)

Submit a new solution for fsharp or clojure
There are 23 other solutions in additional languages (cpp, csharp, erlang, fantom ...)