Flightphp
require 'flight/Flight.php';
Flight::route('/', function(){
echo 'hello world!!!';
});
Flight::start();
Clear Capybara
require 'flight/Flight.php';
Flight::route('/', function(){
echo 'hello world!!!';
});
Flight::start();