mirror of
https://github.com/igorsimdyanov/php8.git
synced 2025-08-10 03:01:01 +00:00
8 lines
113 B
PHP
8 lines
113 B
PHP
<?php
|
|
function factorial(int $number): int
|
|
{
|
|
return $number * factorial($number - 1);
|
|
}
|
|
|
|
echo factorial(5);
|