#includeIn this example, we create a new `bottle::app` instance and define a route with a URL parameter. When the route is accessed, the lambda function is called with the value of the parameter. In this case, it returns a greeting message with the given name. The package library for Bottle would be the `bottle` library.#include #include "bottle/bottle.h" bottle::app app; int main() { app.route(bottle::GET, "/hello/:name")([] (std::string name) -> std::string { return "Hello, " + name + "!"; }); app.run(); // Start the server return 0; }