mirror of
https://gitlab.com/moepoi/WaifuGenerator.git
synced 2025-01-03 18:02:32 +01:00
10 lines
192 B
PHP
10 lines
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}";
|
||
|
|
||
|
?>
|