*** empty log message ***

This commit is contained in:
2006-04-20 05:44:29 +00:00
parent 30040f4691
commit 12c435e374
3 changed files with 65 additions and 16 deletions

View File

@ -1,4 +1,4 @@
global x, j;
//global x, j;
func func1 (x)
{
@ -11,6 +11,8 @@ BEGIN
idx="abc";
x[idx] = 12345;
i = x[idx];
x["1"] = 1;
x["2"] = 2;
func1 (x);
k = x[idx];