Codebase list libmawk / 7ab313a7-f14c-465a-bfe5-5a4585f9ed23/main src / example_apps / 15_get_array / test.awk
7ab313a7-f14c-465a-bfe5-5a4585f9ed23/main

Tree @7ab313a7-f14c-465a-bfe5-5a4585f9ed23/main (Download .tar.gz)

test.awk @7ab313a7-f14c-465a-bfe5-5a4585f9ed23/mainraw · history · blame

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

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

END {
	print "script: END"
}