Computer Science Canada

need a way to output a variable value from a module

Author:  JayLo [ Tue Jun 03, 2003 6:08 pm ]
Post subject:  need a way to output a variable value from a module

how do to it: need a way to output a variable value from a module?

Author:  Tony [ Tue Jun 03, 2003 6:56 pm ]
Post subject: 

well you could export the variable.

module name
export procedureName, variableName...
...


or if for some reason you cant do that, you can export a function that returns the value of the variable.

Author:  JayLo [ Tue Jun 03, 2003 9:41 pm ]
Post subject: 

right. thanks a bunch.


: