7 lines
63 B
Bash
7 lines
63 B
Bash
|
a=bonjour
|
||
|
b="encore un mot"
|
||
|
for i in $a $b
|
||
|
do
|
||
|
echo $i
|
||
|
done
|