mirror of
https://git.busybox.net/busybox
synced 2025-05-13 14:14:01 +02:00
7 lines
126 B
Text
Executable file
7 lines
126 B
Text
Executable file
x=1
|
|
f() { echo $x; local x=$((x+1)); echo $x; }
|
|
g() { f; echo $x; f; local x=$((x+1)); f; echo $x; f; }
|
|
f
|
|
g
|
|
echo $x
|
|
echo Done
|