This function requires you to log in. Please enter your login details
Given the list
[One, Two, Three, Four, Five], fetch the third element (
'Three')
fsharp let result = List.nth ["One"; "Two"; "Three"; "Four"; "Five"] 2
#light
open System
let result = List.nth ["One"; "Two"; "Three"; "Four"; "Five"] 2
printfn "%s" result
Submit a new solution for
fsharp
There are 20 other solutions in
additional languages (
cpp,
csharp,
erlang,
groovy ...)