# invalid ```bash $a="b" a = "b" a= "b" a ="b" ``` # valid ```bash a="b" a=b ``` # examples ```bash a="b c d" echo $a # output: b c d ```