Strings & Patterns Learning Mode

Consider the following PHP code snippet:

<?
$who = "World";
echo <<<TEXT
"Hello $who"
TEXT;

?>

What will be the output?