Created
September 3, 2015 18:24
-
-
Save amckinley/a08fe0fe93addf66fa97 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def cool_method(a): | |
a.append(42) | |
def main(): | |
a = [1,2,3] | |
cool_method(a) | |
print a | |
if __name__ == '__main__': | |
main() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment