Hacker Newsnew | past | comments | ask | show | jobs | submitlogin

  import System.Random (randomRIO)
 
  pick :: [a] -> IO a
  pick xs = fmap (xs !!) $ randomRIO (0, length xs - 1)
 
  main = do
    x <- pick lifeAdvice
    print x


Consider applying for YC's Fall 2026 batch! Applications are open till July 27.

Guidelines | FAQ | Lists | API | Security | Legal | Apply to YC | Contact

Search: