get('/', function ($request, $response, $args) { $response->getBody()->write("Hello world!"); return $response; }); $app->get('/value/{id}', function ($request, $response, $args) { $passed_value = $args['id']; $response->getBody()->write("Value is $passed_value"); return $response; }); $app->run();