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
/
paramuninitglobal.awk
blob: b59bb2489e71dc2db0fc0c22185c9c09899e18b6 (
plain
)
1
2
function f
(
x
)
{
a
=
10
;
print
x
;
print
a
}
BEGIN
{
f
(
a
)
}