/
spirzen
/
it-code-examples
Обзор
Документация
Войти
/
spirzen
/
it-code-examples
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
examples/lua/lua-515-173-004/main.lua
14 строк
249 B
Spirzen
Code migration pack
09 июн 2026, 01:41
09 июн 2026, 01:41
cebc284
Код
Авторство
О чём код?
local function fetch_data(url) if not url then error("URL is required") end return "payload" end local ok, data = pcall(fetch_data, nil) if ok then print("Data:", data) else print("Fetch failed, continuing:", data) end