diff options
Diffstat (limited to 'test/prmarscl.awk')
-rw-r--r-- | test/prmarscl.awk | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/test/prmarscl.awk b/test/prmarscl.awk new file mode 100644 index 00000000..3caf3d9c --- /dev/null +++ b/test/prmarscl.awk @@ -0,0 +1,6 @@ +function test(a) +{ + print a[1] +} + +BEGIN { j = 4; test(j) } |