gplx/mediawiki/tests/phpunit/includes/shell/bin/echo_333333_stars.php

8 lines
82 B
PHP

<?php
if ( PHP_SAPI !== 'cli' ) {
exit( 1 );
}
echo str_repeat( '*', 333333 );