fbbc8ebb4200bedcebc0261c7af158877b2ec65f3693b31f320091d19999ea39

Download raw

Created: 2023-12-19 03:40:10.302489 UTC

Size: 806

Preview (limited to 512 bytes)

"module Main (main) where\n\nimport Control.Monad (forM_, replicateM)\nimport Data.List (tails)\nimport Test.HUnit (assertFailure)\n\nimport qualified System.Random.SplitMix as SM\nimport qualified System.Random.SplitMix32 as SM32\n\nmain :: IO ()\nmain = do\n g64 <- replicateM 10 (fmap show SM.initSMGen)\n putStrLn $ unlines g64\n forM_ (tails g64) $ \\xs' -> case xs' of\n [] -> return ()\n (x:xs) ->\n if all (x /=) xs\n then return ()\n else assertFailure \""


Casa is a service provided by the Haskell Foundation │ Originally developed by FP Complete