Skip to content

Instantly share code, notes, and snippets.

@reccanti
Last active January 29, 2019 17:51
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save reccanti/45dc145a6d3bba62fe8dc0d98fd6750e to your computer and use it in GitHub Desktop.
Save reccanti/45dc145a6d3bba62fe8dc0d98fd6750e to your computer and use it in GitHub Desktop.
Get a random number between 1 and 100 in Haskell
import System.Random
main = do
x <- randomRIO (1,100) :: IO Int
putStrLn $ show x
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment