List.hd: Returns the first element of a nonempty list (The head of the list).
List.tl: Returns all the elements of a nonempty list except the first (The tail or rest of the list).
Example (using F# Interactive Console):
> let sample = [1;2;3;4];;
val sample : int list
> List.hd sample;;
val it : int = 1
> List.tl sample;;
val it : int list = [2; 3; 4]
