Added example ExecutionPolicy files

This commit is contained in:
Netkas 2022-12-07 21:17:25 -05:00
parent daa954bd76
commit 388d856503
6 changed files with 24 additions and 0 deletions

View file

@ -0,0 +1,5 @@
<?php
echo 'Hello World!' . PHP_EOL;
echo 'What is your name? ';
$name = trim(fgets(STDIN));
echo "Hello $name" . PHP_EOL;