シェルスクリプトを追加する

This commit is contained in:
ry.yamafuji 2025-04-04 06:51:45 +09:00
parent 1f67a85881
commit 1779a68eab

16
src/shell/helloworld.php Normal file
View File

@ -0,0 +1,16 @@
<?php
/**
* This file is part of the PHP Example Project.
*
*/
/**
* This function prints "Hello, World!" to the console.
* @return void
*/
function helloWorld() {
echo "Hello, World!\n";
}
helloWorld();