<?php
declare(strict_types=1);
function showInfo(string $name, int $score): void
{
echo $name . ‘: ‘ . $score . PHP_EOL;
}
//showInfo(‘chodome’, 40);
//showInfo(‘chodome’, ‘gamegank’);
showInfo(‘chodome’, ‘4’);
<?php
declare(strict_types=1);
function showInfo(string $name, int $score): void
{
echo $name . ‘: ‘ . $score . PHP_EOL;
}
//showInfo(‘chodome’, 40);
//showInfo(‘chodome’, ‘gamegank’);
showInfo(‘chodome’, ‘4’);