qse/ase/cmd/awk/lang-003.awk

4 lines
84 B
Awk
Raw Normal View History

2007-12-24 02:11:27 +00:00
# should print 50
function fn(f) { f = 20; }
BEGIN { f = 50; fn(100); print f; }