1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
|
arg1 invoked with argument;
arg2 {
arg1 invoked with argument1;
arg1 invoked with argument2;
}
arg3 {
arg2 {
arg1 invoked with x;
arg1 invoked with y;
}
arg1 invoked with z;
}
nested;
toplevel was called with hallo and contains a;
nested;
first a1;
rest;
cnt 0 0 $#{rest,x};
invisible $invisible;
block {
}
no additional args;
first He\ 'lo;
rest a2 He\ 'lo;
cnt 2 2 $#{rest,x};
invisible $invisible;
block {
arg1 invoked with He\ 'lo;
no $nested_var here;
}
|