Created
April 13, 2016 15:49
-
-
Save bigbes/a70808c4c732afaea9a8d41da1eb1ec0 to your computer and use it in GitHub Desktop.
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 x = 0 | |
while x < 1000000000 do | |
local k, v = math.random(10, 20), math.random(100, 500) | |
if k < 10 or k > 20 or v < 100 or v > 500 then | |
print(k, v) | |
break | |
end | |
x = x + 1 | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Bug in Tarantool on Mac OS X brew build