Created
September 19, 2013 13:24
-
-
Save bbarr/6623414 to your computer and use it in GitHub Desktop.
# airscript
This file contains 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
-- Sample script to make an HTTP request with query parameters | |
local response = http.request { | |
url = 'http://www.random.org/integers/', | |
params = { | |
num=1, min=0, max=1, format='plain', | |
rnd='new', col=1, base=10 | |
} | |
} | |
if tonumber(response.content) == 0 then | |
return 'heads' | |
else | |
return 'tails' | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment