How to Write a TCP Echo Server in Ruby
In ruby you have lowlevel access to all the same methods that you do in C, but you also have some higher level sugar on top.
Posts tagged with "write-a-tcp-server"
In ruby you have lowlevel access to all the same methods that you do in C, but you also have some higher level sugar on top.
In c you are as close to the metal as possible in a high-level language, which shows in the verbose code you need to make a simple tcp server.
If c is the most verbose way to write a tcp server, Javascript (nodejs) is probably the least verbose way.