RosettaCodeData/Task/Hello-world-Web-server/R/hello-world-web-server.r

10 lines
188 B
R
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
library(httpuv)
runServer("0.0.0.0", 5000,
list(
call = function(req) {
2026-02-01 16:33:20 -08:00
list(status = 200L, headers = list('Content-Type' = 'text/html'), body = "Goodbye, world!")
2023-07-01 11:58:00 -04:00
}
)
)