13 lines
183 B
PHP
13 lines
183 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
namespace Myrmidex\AnagramFinder;
|
||
|
|
|
||
|
|
class Output
|
||
|
|
{
|
||
|
|
public static function line(string $message = ''): void
|
||
|
|
{
|
||
|
|
print($message . PHP_EOL);
|
||
|
|
flush();
|
||
|
|
}
|
||
|
|
}
|