Sha256: c779b759646fa8a28cb7c901f47924af04e5f7729bf18e4d82dce4348ca47826
Contents?: true
Size: 372 Bytes
Versions: 396
Compression:
Stored size: 372 Bytes
Contents
module Raindrops (convert) where import Data.Maybe (fromMaybe) convert :: Int -> String convert n = fromMaybe (show n) maybeSound where maybeSound = sound "Pling" 3 `mappend` sound "Plang" 5 `mappend` sound "Plong" 7 sound noise factor | n `rem` factor == 0 = Just noise | otherwise = Nothing
Version data entries
396 entries across 396 versions & 1 rubygems