8 lines
174 B
Text
8 lines
174 B
Text
|
#!/usr/bin/env php
|
||
|
<?php
|
||
|
require_once __DIR__ . '/../hanyuu.php';
|
||
|
|
||
|
$hau->pruneExpired(function(string $format, ...$args) {
|
||
|
echo sprintf($format, ...$args) . PHP_EOL;
|
||
|
});
|