-- Hoogle documentation, generated by Haddock -- See Hoogle, http://www.haskell.org/hoogle/ -- | Interface to random numbers on random.org -- -- Using this package you can generate random numbers (based on the -- atmosphere, not a PRNG) via the random.org website @package RandomDotOrg @version 0.1 module RandomDotOrg -- | Used to get a list of random numbers from http:random.org. -- Note: the minimum must be greater than the maximum. The maximum amount -- of numbers you can retrieve is 10,000, and the numbers themselves are -- limited to a range of +/- 1,000,000,000 (inclusive) getRandomNumbers :: Int -> Int -> Int -> IO (Either String [Int])