Codebase list libmawk / debian/1.0.2-1 src / example_apps / 20_uninit_staged / test.awk
debian/1.0.2-1

Tree @debian/1.0.2-1 (Download .tar.gz)

test.awk @debian/1.0.2-1raw · history · blame

1
2
3
BEGIN { print "script: BEGIN test.awk"; script_state = "begin" }
      { print "script: input";          script_state = script_state "+input" }
END   { print "script: END test.awk";   script_state = script_state "+end" }