open System.Linq
let Sample_Select_Lambda_Indexed =
let arr = [| "my"; "three"; "words" |]
let res = arr.Select(fun a i -> i,a)
res.ToList().ForEach(fun el -> let x,y = el in printfn "%i - %s" x y )