Codebase list libmawk / 30b66529-447f-407d-a34b-b48ac0e29c37/upstream src / example_apps / 15_get_array / test.awk
30b66529-447f-407d-a34b-b48ac0e29c37/upstream

Tree @30b66529-447f-407d-a34b-b48ac0e29c37/upstream (Download .tar.gz)

test.awk @30b66529-447f-407d-a34b-b48ac0e29c37/upstreamraw · history · blame

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

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

END {
	print "script: END"
}