10 lines
100 B
PHP
10 lines
100 B
PHP
<?php
|
|
$fuel = 10;
|
|
|
|
while ($fuel > 1)
|
|
{
|
|
// Keep driving …
|
|
echo "There's enough fuel";
|
|
}
|
|
?>
|