Name: Anonymous 2010-10-20 22:39
Fuck, I've been rereading http://mvanier.livejournal.com/2897.html for the past several hours and it might as well be written in Esperanto. Am I just not cut out for EXPERT PROGRAMMING‽
def factorial (n):
if n == 0:
return 1
else:
return n * factorial (n-1)