Shortcut function for handling HttpKernel front-controller boilerplate.
Usually you need to put all of that $request = ... && $response = $app->handle($request)
business in the front controller yourself. No more!
With Stack/Run, you just need to call one function:
$app = ...;
Stack\run($app);