Re: bug in the dos32 version?
- Posted by Irv <irv at ELLIJAY.COM> May 22, 1998
- 657 views
At 02:05 AM 5/22/98 -0500, Keith B. Devens emitted a stream of bits that resembled: >Also, is it just me, or are you supposed to access variables from >inside a procedure that you want to be changed when you exit the >procedure 'globally'? i.e. you don't put the variables in the parameter >list? Thanks for your help. > Generally (just my opinion) it is good programming practice to have very few to zero global variables. That makes it easier to re-use your code modules, and makes tracking down bugs easier as well. Especially with long programs. Actually, working in an object-oriented manner is even better. Irv