Skip to content

Instantly share code, notes, and snippets.

@k0001
Created April 20, 2009 03:01
Show Gist options
  • Save k0001/98337 to your computer and use it in GitHub Desktop.
Save k0001/98337 to your computer and use it in GitHub Desktop.
k@hirako ~ % cat hola.py
def f():
print u"bla bla"
print u"soy un virus malo!"
k@hirako ~ % python
Python 2.6.2c1 (release26-maint, Apr 14 2009, 08:02:02)
[GCC 4.3.3] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> from hola import f
soy un virus malo!
>>> f()
bla bla
>>>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment