Ruby 的 UDP 客户端一例

require 'socket'

s = UDPSocket.new
s.send("hello", 0, 'localhost', 1234)

编程技巧