mirror of
https://git.busybox.net/busybox
synced 2026-02-22 10:12:18 +00:00
8 lines
126 B
Text
8 lines
126 B
Text
|
|
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
|