This home page is _personal_

This commit is contained in:
2024-03-01 22:49:44 -05:00
parent a498ff949c
commit 1ed7fb7d33
8 changed files with 203 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
<?php
require_once 'vendor/autoload.php';
$hello_cmd = new Commando\Command();
$hello_cmd->option()->require()->describedAs('A person\'s name');
$name = $hello_cmd[0];
echo "Hello, $name", PHP_EOL;