specialsnipe/php-project-lvl1

View on GitHub
src/Games/Cli.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace Snipe\Cli;

use function cli\line;
use function cli\prompt;

function run()
{
    line('Welcome to the Brain Games!');
    $name = prompt('May I have your name?');
    line("Hello, %s!", $name);
}