Skip to content

Instantly share code, notes, and snippets.

@qoelet
Created August 25, 2011 02:56
Show Gist options
  • Save qoelet/1169882 to your computer and use it in GitHub Desktop.
Save qoelet/1169882 to your computer and use it in GitHub Desktop.
def add_curly_wurly(func):
def curlized():
print "~"
func()
print "~"
return curlized
@add_curly_wurly
def hello_world():
print "Hello world!"
hello_world()
# output:
# ~
# Hello world!
# ~
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment