Codebase list libmawk / fresh-releases/main src / example_apps / 15_get_array / test.awk
fresh-releases/main

Tree @fresh-releases/main (Download .tar.gz)

test.awk @fresh-releases/mainraw · history · blame

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

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

END {
	print "script: END"
}