This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
local http = require("socket.http") | |
local ltn12 = require("ltn12") | |
local base_url = "https://httpbin.org/" | |
function deep_print(tbl) | |
for i, v in pairs(tbl) do | |
if type(v) == "table" then | |
deep_print(v) | |
else |
NewerOlder