Google News
logo
Perl - Interview Questions
What is the difference between single (') and double (") quote in a string in Perl?
In the single quote, the value is printed as it is given inside the string without interpolation.
 
In the double quote, the value is printed with interpolation given inside the string.
Advertisement