PHP Basics Learning Mode

What will be the output of the following PHP code ?

<?php
    define('GREETING_TEST', 'PHP is a scripting language', true);
    echo GREETING_TESt;
    $changing_variable = 'test';
    echo constant('GREETING_' . strtoupper($changing_variable));
?>