Skip to content

Instantly share code, notes, and snippets.

@bigbes
Created April 13, 2016 15:49
Show Gist options
  • Save bigbes/a70808c4c732afaea9a8d41da1eb1ec0 to your computer and use it in GitHub Desktop.
Save bigbes/a70808c4c732afaea9a8d41da1eb1ec0 to your computer and use it in GitHub Desktop.
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
@bigbes
Copy link
Author

bigbes commented Apr 13, 2016

Bug in Tarantool on Mac OS X brew build

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment