Tomato 1.25
[tomato.git] / release / src / router / busybox / shell / hush_test / hush-misc / func2.tests
blob763203f15adfc4481f638305ec7865e97cbd2588
1 i=0
2 while test $i != 2; do
3     f() { echo First $i; }
4     f
5     f() { echo Second $i; }
6     f
7     : $((i++))
8 done
9 echo Done