LOCAL(variablenname)macro beispiel( x ) {
Verbose(1,x ist ${x});
LOCAL(y)=x+x;
Verbose(1,y ist ${y});
}
context default {
123 => {
&beispiel(4);
// y wird zwar im Makro gesetzt, ist
// aber hier nicht definiert
Verbose(1,y ist ${y});
}
} | | | | | 1.6 |———————— -= Info about function 'LOCAL' =-
[Syntax]
LOCAL(<varname>)
[Synopsis]
Variables local to the gosub stack frame
[Description]
Not available