In what order are the three words printed?
php
<?php
function result(): string
{
try {
echo "try\n";
return 'done';
} finally {
echo "finally\n";
}
}
echo result(), "\n";
<?php
function result(): string
{
try {
echo "try\n";
return 'done';
} finally {
echo "finally\n";
}
}
echo result(), "\n";