show/hide this revision's text 2 added code example

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]
show/hide this revision's text 1

List.hd: Returns the first element of a nonempty list.

List.tl: Returns all the elements of a nonempty list except the first.