Haunted House

Origo is a funnyface (0,0)

Archive for May, 2008

Python is way more modular than I though!

Posted by Gasten on May 22, 2008

>>> def myFunc():
...     print "myFunc prints!"
...
>>> def execFunc(function):
...     function()
...
>>> execFunc(myFunc)
myFunc prints!
>>>

Posted in Computers | 1 Comment »