Most of the time single and double quotes can both be used when using echo.
Single quotes will print everything inside; including variables.
Double quotes will print variables and other funtcions into their respected value.

For example:

My name is $name. (single)
My name is Brett. (double)