What does this program print?

from Enums
PHP 8.3.33 beginner 2 min

What does this program print?

php
<?php
enum Direction
{
    case North;
    case South;
}
$first = Direction::North;
$listed = Direction::cases()[0];
echo $first->name, ':', $first === $listed ? 'same' : 'different', PHP_EOL;
Open in playground
Report an error