Initial Commit

This commit is contained in:
netkas 2025-01-16 00:20:45 -05:00
commit 3c094c7ac2
12 changed files with 470 additions and 0 deletions

View file

@ -0,0 +1,8 @@
<?php
namespace LogLib2;
class LogLib2
{
}

18
src/LogLib2/Program.php Normal file
View file

@ -0,0 +1,18 @@
<?php
namespace LogLib2;
class Program
{
/**
* LogLib2 main entry point
*
* @param string[] $args Command-line arguments
* @return int Exit code
*/
public static function main(array $args): int
{
print("Hello World from net.nosial.loglib2!" . PHP_EOL);
return 0;
}
}