lune/test.luau
2025-04-28 12:40:37 +02:00

7 lines
159 B
Text

local net = require("@lune/net")
local handle = net.serve(8080, function()
return "Hello, World!"
end)
print(`Server started on {handle.ip}:{handle.port}`)