hd : 'a list -> 'a

SYNOPSIS
Computes the first element (the head) of a list.

DESCRIPTION
hd [x1;...;xn] returns x1.

FAILURE CONDITIONS
Fails with hd if the list is empty.

SEE ALSO
tl, el.