dotfiles/php/includes/functions.php
Tim 90751f5bec Implement stow config file and folder unwrapping
Move includes to their own folder, config.php will otherwise be included
and cleans up nicely
2025-05-19 00:26:52 +02:00

11 lines
173 B
PHP

<?php
function path(...$segments): string
{
return implode(DIRECTORY_SEPARATOR, $segments);
}
function line(string $line): void
{
echo $line . PHP_EOL;
}