summaryrefslogtreecommitdiff
path: root/test/prec.awk
blob: 8b377348ce030e3ba09d81a0420db53ec766ea50 (plain)
1
2
3
4
5
6
7
# check the precedence of operators:
BEGIN {
	$1 = i = 1
	$+i++
	$- -i++
	print
}