mirror of
https://git.busybox.net/busybox
synced 2025-05-10 04:33:59 +02:00
function old new delta evaluate_string 988 1011 +23 Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
9 lines
189 B
Text
Executable file
9 lines
189 B
Text
Executable file
echo 1 $((0++1))
|
|
echo 1 $((0--1))
|
|
x=-1; echo 1 $((0-$x))
|
|
x=+1; echo 1 $((0+$x))
|
|
a=3
|
|
echo 6 $((a+++3)) # a++ + 3
|
|
echo 7 $(((a)+++3)) # a + + + 3
|
|
echo 7 $(((a)+++3)) # a + + + 3
|
|
echo Ok:$?
|