mirror of
https://github.com/adambard/learnxinyminutes-docs.git
synced 2025-04-27 07:33:57 +00:00
Minor tweak to expected echo output
This commit is contained in:
parent
e307da7812
commit
efafa87bba
@ -70,7 +70,7 @@ $number /= $float; // Divide and assign the quotient to $number
|
||||
$sgl_quotes = '$String'; // => '$String'
|
||||
|
||||
// Avoid using double quotes except to embed other variables
|
||||
$dbl_quotes = "This is a $sgl_quotes."; // => 'This is a $String'
|
||||
$dbl_quotes = "This is a $sgl_quotes."; // => 'This is a $String.'
|
||||
|
||||
// Special characters are only escaped in double quotes
|
||||
$escaped = "This contains a \t tab character.";
|
||||
|
Loading…
Reference in New Issue
Block a user