mirror of
http://124.126.16.154:8888/singularity/composer-template.git
synced 2026-01-15 00:35:08 +08:00
12 lines
173 B
PHP
12 lines
173 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
require __DIR__ . '/../vendor/autoload.php';
|
|
|
|
use Example\Greeting;
|
|
|
|
$greeting = new Greeting('Ada Lovelace');
|
|
|
|
echo $greeting->sayHello();
|