Codebase list libmawk / scrub-obsolete/main src / example_apps / 15_get_array / test.awk
scrub-obsolete/main

Tree @scrub-obsolete/main (Download .tar.gz)

test.awk @scrub-obsolete/mainraw · history · blame

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

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

END {
	print "script: END"
}