Codebase list libmawk / debian/1.0.0-3 src / example_apps / 15_get_array / test.awk
debian/1.0.0-3

Tree @debian/1.0.0-3 (Download .tar.gz)

test.awk @debian/1.0.0-3raw · history · blame

BEGIN {
	print "script: BEGIN"
	bar["wow"] = 42
}

{
	print "script: input: \"" $0 "\""
	bar["wow"]++
}

END {
	print "script: END"
}