Files
lpmj6/4/28.php
T
2021-04-18 11:18:28 +01:00

10 lines
100 B
PHP

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