Skip to content

Instantly share code, notes, and snippets.

View bmarchenko's full-sized avatar

Bohdan Marchenko bmarchenko

View GitHub Profile
@bmarchenko
bmarchenko / factorial.py
Created November 27, 2012 14:27 — forked from ghoseb/factorial.py
The evolution of a Python Programmer
#Newbie programmer
def factorial(x):
if x == 0:
return 1
else:
return x * factorial(x - 1)
print factorial(6)
#First year programmer, studied Pascal
@bmarchenko
bmarchenko / factorial.py
Created November 27, 2012 14:27 — forked from ghoseb/factorial.py
The evolution of a Python Programmer
#Newbie programmer
def factorial(x):
if x == 0:
return 1
else:
return x * factorial(x - 1)
print factorial(6)
#First year programmer, studied Pascal