Steps to reproduce:
- Paste the following code into the terminal
echo "Hello"
echo "World"
Observed behavior:
The lines are concatenated together. What gets run is echo "Hello" echo "World".
Expected behavior:
The lines are run in sequence, with the first line run first and then the second line run after the first has completed.