Codebase list libmawk / 70499808-c2b9-4be2-ae11-0ab4b3a1a115/main src / example_apps / 15_get_array / test.awk
70499808-c2b9-4be2-ae11-0ab4b3a1a115/main

Tree @70499808-c2b9-4be2-ae11-0ab4b3a1a115/main (Download .tar.gz)

test.awk @70499808-c2b9-4be2-ae11-0ab4b3a1a115/mainraw · history · blame

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

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

END {
	print "script: END"
}