nur-sery/nur_src/words.php

12 lines
212 B
PHP
Raw Permalink Normal View History

2023-12-03 22:10:18 +04:00
<?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);
}
}