5 lines
60 B
Bash
5 lines
60 B
Bash
|
for i in ee oo kk; do
|
||
|
echo $i
|
||
|
break
|
||
|
done
|
||
|
echo "done"
|