Test Interpolation

Output of the following code:
# Strict delimiter
$str1='toto\n';
# Allows interpolation
$str2="toto\n";
echo $str1; 
echo $str2;
toto\ntoto