mirror of
https://github.com/lune-org/lune.git
synced 2025-05-04 10:43:57 +01:00
7 lines
159 B
Text
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}`)
|