10 lines
185 B
R
10 lines
185 B
R
|
|
library(httpuv)
|
||
|
|
|
||
|
|
runServer("0.0.0.0", 5000,
|
||
|
|
list(
|
||
|
|
call = function(req) {
|
||
|
|
list(status = 200L, headers = list('Content-Type' = 'text/html'), body = "Hello world!")
|
||
|
|
}
|
||
|
|
)
|
||
|
|
)
|