Created
September 22, 2014 18:11
-
-
Save donpinkus/0a591632df0d9c6821cd to your computer and use it in GitHub Desktop.
# airscript
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
-- 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