Skip to content

Instantly share code, notes, and snippets.

View return5's full-sized avatar
๐Ÿ€
edit status

chris return5

๐Ÿ€
edit status
  • tennessee
  • 03:03 (UTC -05:00)
View GitHub Profile
@kracekumar
kracekumar / lua_httpbin.lua
Created July 19, 2013 07:08
luasocket.http demostration
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