Files
lpmj6/4/28.php
T
RobinNixon 0335342e00 First Draft
First Draft of the Example Files
2020-12-10 13:21:38 +00:00

10 lines
100 B
PHP

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