Created
June 7, 2011 18:15
-
-
Save FurryHead/1012799 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
code_environment = load_some_code(string_or_file_or_code_object); | |
classObject = code_environment.SomeClass(args); | |
.... do stuff with classObject | |
code_environment = load_some_code(string); | |
classObject = code_environment.SomeClass(args); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment