Codebase list libmawk / b9006faf-873e-4aac-9952-74a72f875ff9/main src / example_apps / 15_get_array / test.awk
b9006faf-873e-4aac-9952-74a72f875ff9/main

Tree @b9006faf-873e-4aac-9952-74a72f875ff9/main (Download .tar.gz)

test.awk @b9006faf-873e-4aac-9952-74a72f875ff9/mainraw · history · blame

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

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

END {
	print "script: END"
}