Assn6_not relying on global variables

Re: Assn6_not relying on global variables

by Erik Spence -
Number of replies: 0
Global variables can exist (and they will, in your driver script), but you must not access them directly from within your functions. You must pass those variables through the function's argument list, so that the information in the global variables is passed to local variables.