1.0.0 Alpha Release

This commit is contained in:
Zi Xing 2023-01-29 23:27:56 +00:00
parent 9fb26e9aa0
commit c2b7be0ea2
297 changed files with 13712 additions and 2517 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;