xref
: /
illumos-gate
/
usr
/
src
/
test
/
util-tests
/
tests
/
awk
/
gnu
/
prec.awk
(revision 45ede40b2394db7967e59f19288fae9b62efd4aa)
Home
History
Annotate
Line#
Scopes#
Navigate#
Raw
Download
current directory
1
# check the precedence of operators:
2
BEGIN
{
3
$
1
=
i
=
1
4
$+i++
5
$- -i++
6
print
7
}
8