mirror of
https://gitlab.com/moepoi/WaifuGenerator.git
synced 2024-11-23 07:17:18 +01:00
10 lines
No EOL
192 B
PHP
10 lines
No EOL
192 B
PHP
<?php
|
|
|
|
include('src/WaifuGenerator.php');
|
|
|
|
$anu = new WaifuGenerator();
|
|
$name = $anu->type("name");
|
|
$image = $anu->type("image");
|
|
echo "=== RESULT ===\n\nName : {$name}\nImage : {$image}";
|
|
|
|
?>
|