index
:
egawk
master
Enhanced GNU Awk
kaz@kylheku.com
about
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
test
/
delsub.awk
blob: 0c3ffb0e3ad68a2e5f63c27f269fd7b9145b06e3 (
plain
)
1
2
function f
(
c
,
d
,
x
)
{
delete
c
;
x
=
d
[
0
]
}
BEGIN
{
a
[
0
][
0
]
=
1
;
f
(
a
,
a
[
0
]);
print
"still here"
}