Skip to content

Instantly share code, notes, and snippets.

@rciorba
Created January 27, 2015 12:38
Show Gist options
  • Save rciorba/b8fdcfe04bd2c8c40215 to your computer and use it in GitHub Desktop.
Save rciorba/b8fdcfe04bd2c8c40215 to your computer and use it in GitHub Desktop.
imports
print "A"
import a
print "B"
import b
import a
print "main"
# outputs:
# A
# B
# main
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment