Created
June 19, 2018 13:23
-
-
Save costajob/b98242d981efe4228eb4ed6ec8d6144d to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$vertx.create_http_server().request_handler() do |req| | |
req.response() | |
.put_header(content-type, "text/plain") | |
.end("Hello World") | |
end.listen(9292) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment