RosettaCodeData/Task/Sockets/Lua/sockets.lua

7 lines
135 B
Lua
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
socket = require "socket"
host, port = "127.0.0.1", 256
sid = socket.udp()
sid:sendto( "hello socket world", host, port )
sid:close()