Codebase list libmawk / c18583c0-bfa6-44ff-88f7-5aa9a2739ad8/main src / example_apps / 15_get_array / test.awk
c18583c0-bfa6-44ff-88f7-5aa9a2739ad8/main

Tree @c18583c0-bfa6-44ff-88f7-5aa9a2739ad8/main (Download .tar.gz)

test.awk @c18583c0-bfa6-44ff-88f7-5aa9a2739ad8/mainraw · history · blame

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

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

END {
	print "script: END"
}