print([[ =============================================================================== examples: =============================================================================== curl localhost:3000 => Hello, World! =============================================================================== ]]) local app = create_app() app:get("/", function(req, res) res.body = "Hello, World!" return res end) app:run(3000)