My attempt, using C#: int f(int v){return v<2?1:v*f(v-1);} 38 Characters, counting whitespace.