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;
