RosettaCodeData/Task/Sockets/Pluto/sockets.pluto
2026-04-30 12:34:36 -04:00

9 lines
284 B
Text

local socket = require "pluto:socket"
local host, port, transport = "localhost", 256, "udp"
local s = socket.connect(host, port, transport)
if s then
s:send("hello socket world")
s:close()
else
print($"Unable to connect to '{host}' on port: {port} using {transport}")
end