I would like to know why it display only tomate
and not both words.
$ a="tomate" ; echo $a
tomate
$ (a="poivron" ; echo $a)
poivron
$ echo $a
tomate
I would like to know why it display only tomate
and not both words.
$ a="tomate" ; echo $a
tomate
$ (a="poivron" ; echo $a)
poivron
$ echo $a
tomate