Skip to content

Instantly share code, notes, and snippets.

@Najaf
Created May 28, 2014 22:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Najaf/8abe8a56d81e99ef708b to your computer and use it in GitHub Desktop.
Save Najaf/8abe8a56d81e99ef708b to your computer and use it in GitHub Desktop.
#! /usr/bin/env ruby
require 'socket'
Socket.tcp_server_loop(ARGV[0].to_i) do |connection|
connection.write("Hello, world\n")
connection.close
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment