Practicing single and double quotes

This is single quoted, everything within these quotes will be taken literally

This is double quoted, everything within these quotes will be interpreted

When using single quotes, the string will be taken as a literal, meaning that it will compile and display exactly as it was typed. For example, $name should print my name but does not because the compiler is not looking for variables
When using double quotes however, the string will be interpreted, meaning that the compiler will display any variables properly instead of the variable name. For example $name has the value Julius Lyndsley