Speaking of quotes, let's talk about the differences between "" and ''

After you start your echo command, you can choose either one but you have to stick with it from the beginning to the end, otherwise it'll get an error. Meaning you can't do

echo "Now this is a story all about how...'

or

echo 'My life got flipped turned upside down"

Another difference between using the two is when you're defining variables. You have to use double quotes when doing it, so when you try to echo but use '' it won't actually
carry out the variable command (you'd have to concatinate the variable after it). From what I understand, you kinda gotta pick one and stick with it throughout, and sometimes,
like with variables, you're not given much of a choice unless you fancy extra work. Ya dig?