Skip to content

Instantly share code, notes, and snippets.

Verifying that I control the following Nostr public key: npub1lxpdhu4q5jjgfjvvtjachqapajhktzwtyefwryupzk94v3h7y0tqtx73vg
### Keybase proof
I hereby claim:
* I am ibz on github.
* I am ibz (https://keybase.io/ibz) on keybase.
* I have a public key ASDGcAQxaGYbg9Bm4ZzydBhLnPWUqCETIlGZwqHaOljdgAo
To claim this, I am signing this object:
@ibz
ibz / factorial.py
Created January 31, 2010 02:43 — forked from ghoseb/factorial.py
#Newbie programmer
def factorial(x):
if x == 0:
return 1
else:
return x * factorial(x - 1)
print factorial(6)
#First year programmer, studied Pascal