Functions Learning Mode

What will this code output?

<?php
    if (!is_callable(function(){echo "Hello";})) {
        function sayHello() {
            echo "World!";
        }
    }
    sayHello();