PDA

View Full Version : global variables


Heinz
12-06-2007, 11:19 AM
Is there a difference between i% and global(i$) for example, or is % and global() the same?

kornalius
12-06-2007, 02:06 PM
Yes, i% is a variable that is global to all running PPL programs with the same PPL.EXE process.

Global(i$) is only globally available through the current running program.

You will almost never use % variables.

Heinz
12-07-2007, 11:04 AM
Thanks for the explanation, Alain!