soundgen 0.1.0.0 → 0.1.0.1
raw patch · 2 files changed
+3/−3 lines, 2 filesnew-component:exe:soundgen
Files
- soundgen.cabal +2/−2
- src/Main.hs +1/−1
soundgen.cabal view
@@ -2,7 +2,7 @@ -- see http://haskell.org/cabal/users-guide/ name: soundgen-version: 0.1.0.0+version: 0.1.0.1 synopsis: sound generator description: Simple tone generator. You can decide the tone frequency and duration license: BSD3@@ -15,7 +15,7 @@ extra-source-files: ChangeLog.md cabal-version: >=1.10 -executable sound+executable soundgen main-is: Main.hs -- other-modules: -- other-extensions:
src/Main.hs view
@@ -28,4 +28,4 @@ main = do args <- getArgs case args of [f,d] -> (makeWavFile (waveData (read f) (read d))) >> putStrLn "Done" - _ -> putStrLn "USAGE: sound <frequency (Hz)> <duration (ms)>" + _ -> putStrLn "USAGE: sound <frequency (Hz)> <duration (s)>"