xref
: /
illumos-gate
/
usr
/
src
/
test
/
util-tests
/
tests
/
awk
/
gnu
/
prec.awk
(revision 78801af7286cd73dbc996d470f789e75993cf15d)
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