<?php
// this is the only include required
require_once('autoload.php');
$dr600 = new Motorbike("Suzuki DR600 '89");
echo 'Starting up '.$dr600->model.'<br><br>';
while(!$dr600->isStarted)
{
$dr600->kickstart();
echo '<br>';
}
?>