RosettaCodeData/Task/Sockets/Lua/sockets.lua

7 lines
135 B
Lua
Raw Permalink Normal View History

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