Archive: Local variables


Local variables
I'm using many variables in my functions.
Are the variables $0, $1... local?

If I'm calling another function in my function that will use also $0 and $1, will they be modified?

Why isn't it possible to create my own variables in functions?


:) it's me again


$0 - $9, $R0 - $R9 are global variables

Var yourVariable 

at the begining of the script (this is still global var)

Kobus