I'm going to have to agree with simonuk. Although, like CMS has mentioned, hd and tl are the correct functions, there is more to the argument then that.
When using pattern matching you can exploit the compilers ability to catch base (base) cases you may have missed (such as when the list is empty). You can definitely catch or continue to throw that exception, but you don't have to and you might introduce bugs if that expectation doesn't happen often. So getting in the habit of exploiting the pattern matching is a good programing practice. For all intents and purposes the actual function being applied when calling hd/tl IS matching a pattern. Actually, in ocaml, it is a failure:
let hd = function [] -> failwith "hd" | a::l -> a
let tl = function [] -> failwith "tl" | a::l -> l
As an example, instead of using exception exceptions/failures we might find it more satisfactory to use options:
> let car = function | hd::tl -> Some hd | _ -> None
> let cdr = function | hd::[] -> None | hd :: tl -> Some tl | _ -> None
Also, be wary of using _ to match anything. It hurts more in variant types and when you decide to add another type... opps!
