Is there a way (without putting the function in a separate file) to define the content of a function after the bulk of my code? Sort of like C where you define prototypes and put the body later on in the file.
Ex;
blah blah blah
functionCall(arg)
blah blah blah
def functionCall(arg):
blah blah blah