core/src/Output.php

13 lines
183 B
PHP
Raw Normal View History

2026-08-22 17:52:17 +02:00
<?php
namespace Myrmidex\AnagramFinder;
class Output
{
public static function line(string $message = ''): void
{
print($message . PHP_EOL);
flush();
}
}