RosettaCodeData/Task/Hello-world-Web-server/R/hello-world-web-server.r
2026-02-01 16:33:20 -08:00

9 lines
188 B
R

library(httpuv)
runServer("0.0.0.0", 5000,
list(
call = function(req) {
list(status = 200L, headers = list('Content-Type' = 'text/html'), body = "Goodbye, world!")
}
)
)