12 lines
105 B
Plaintext
12 lines
105 B
Plaintext
|
f1() {
|
||
|
while return 2; do :; done
|
||
|
}
|
||
|
f1
|
||
|
echo Two:$?
|
||
|
|
||
|
f2() {
|
||
|
while :; do return 2; done
|
||
|
}
|
||
|
f2
|
||
|
echo Two:$?
|