Codebase list libmawk / upstream/1.0.0 src / example_apps / 15_get_array / test.awk
upstream/1.0.0

Tree @upstream/1.0.0 (Download .tar.gz)

test.awk @upstream/1.0.0raw · history · blame

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

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

END {
	print "script: END"
}