nur-sery/nur_src/words.php
2023-12-03 22:10:18 +04:00

12 lines
212 B
PHP

<?php
namespace nur;
use nur\b\text\Word;
class words {
static function q(int $count, string $spec, bool $adjective=true): string {
$word = new Word($spec, $adjective);
return $word->q($count);
}
}