show/hide this revision's text 2 added 11 characters in body

List.hd and List.tl will do what you want - but in F# you will find that lists are typically deconstructed using pattern matching. For example, in the following function x matches the head and xs matches the tail of the list passed to the function:

let list = [1;2;3]

let rec f = function
    | [] -> > 1
    | (x::xs) -> > x * (f xs)

f list;
show/hide this revision's text 1

List.hd and List.tl will do what you want - but in F# you will find that lists are typically deconstructed using pattern matching. For example, in the following function x matches the head and xs matches the tail of the list passed to the function:

let list = [1;2;3]

let rec f = function | [] -> 1 | (x::xs) -> x * (f xs)

f list