Haskell:

    \n->product[1..n]

17 characters, 20 with reasonable whitespace.  As a named function:

    fac n = product [1..n]

22 characters.  Without using `product`:

    fac n = foldr (*) 1 [1..n]

26 characters