Bsh/tests/for/for_in_for.sh

10 lines
116 B
Bash

for i in salut mec
do
echo -n "$i "
for j in "bonjour" toi
do
echo -n $j
done
echo
done