Код IT
← Каталог

Модули и организация кода — Проблемы

Фрагмент из «Модули и организация кода»: Проблемы.

Lua main.lua
-- network/http.lua
local http = {}

function http.get(url)
  ...
end

function http.post(url, body)
  ...
end

return http

-- main.lua
local http = require("network.http")
http.get("https://example.com")
-- network/http.lua
local http = {}

function http.get(url)
  ...
end

function http.post(url, body)
  ...
end

return http

-- main.lua
local http = require("network.http")
http.get("https://example.com")