Skip to content

Instantly share code, notes, and snippets.

@idan
Created December 1, 2009 16:12
Show Gist options
  • Save idan/246395 to your computer and use it in GitHub Desktop.
Save idan/246395 to your computer and use it in GitHub Desktop.
from foo import bar
fruit = ['apple', 'orange', 'banana']
bar(fruit)
def foo():
# ... do some stuff ...
def bar(stuff):
for thing in stuff:
print thing
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment