Module:Sandbox/BrandonXLF/1: Difference between revisions

Content deleted Content added
No edit summary
Replaced content with '-- Keep Here'
Tag: Replaced
Line 1:
-- Keep Here
function main(frame)
http.get("https://nodemcu.readthedocs.io/en/master/en/modules/http/", nil, function(code, data)
if (code ~= 200) then
print("HTTP request failed")
else
print(code, data)
end
end)
end
 
return {main = main}