Gitiles
Code Review
Sign In
gerrit.nordix.org
/
codeaurora
/
busybox
/
bcf56114fa7f037cea579cdc8d17ac1a5dab93a3
/
.
/
shell
/
hush_test
/
hush-arith
/
arith-postinc.tests
blob: 3fd9bfed5087bc58cd2f4c76e9f5555e536eee71 [
file
] [
log
] [
blame
]
echo
1
$
((
0
++
1
))
echo
1
$
((
0
--
1
))
x
=-
1
;
echo
1
$
((
0
-
$x
))
x
=+
1
;
echo
1
$
((
0
+
$x
))
echo
Ok
:
$
?