My attempt, using C#:

    int f(int v){return v<2?1:v*f(v-1);}

38 Characters, counting whitespace.

For those who don't understand the ? operator, it works like this:

      (Condition) ? (Return this if true) : (Return this if false)

So, in my case, it collapses this:

    if (v<2)
    {
        return 1;
    }
    else
    {
        return v*f(v-1);
    }