Move stow to it's own dir and separate include files out

This commit is contained in:
Tim
2025-04-29 21:02:02 +02:00
parent 511881bb09
commit c7931f4e10
3 changed files with 111 additions and 109 deletions

11
php/functions.php Normal file
View File

@ -0,0 +1,11 @@
<?php
function path(...$segments): string
{
return join(DIRECTORY_SEPARATOR, $segments);
}
function line(string $line): void
{
echo $line . PHP_EOL;
}