Sign in
coral
/
busybox
/
eb7f9acda147543079f261753a11d2afa340fc5e
/
.
/
shell
/
ash_test
/
ash-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
:
$
?