Codebase list libmawk / 981c753b-c373-44cd-8865-7dcd5e2502ff/main src / example_apps / 15_get_array / test.awk
981c753b-c373-44cd-8865-7dcd5e2502ff/main

Tree @981c753b-c373-44cd-8865-7dcd5e2502ff/main (Download .tar.gz)

test.awk @981c753b-c373-44cd-8865-7dcd5e2502ff/mainraw · history · blame

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

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

END {
	print "script: END"
}