show/hide this revision's text 2 deleted 18 characters in body

Perl, 27 32 charactersof function.

sub f{$_[0]>1?$_[0]*f($_[0]-1):1;}
f{$_[0]?$_[0]*f($_[0]-1):1;}
    Post Made Community Wiki by Community
show/hide this revision's text 1

Perl, 27 characters of function.

sub f{$_[0]>1?$_[0]*f($_[0]-1):1;}