Skip to content

Commit

Permalink
Suppressed a couple of warnings in example code
Browse files Browse the repository at this point in the history
  • Loading branch information
mdittmer committed Nov 9, 2012
1 parent da19139 commit 2872139
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions examples/simple/simple.hs
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
module Main where

import System.IO
import System.Directory
import System.Win32.Notify

Expand All @@ -11,7 +10,7 @@ main = do
wd <- watchDirectory watchManager home isRecursive varieties handler
print wd
putStrLn "Listens to your home directory. Hit enter to terminate."
getLine -- TODO: This hangs... why is that?
_ <- getLine -- TODO: This hangs... why is that?
killWatchManager watchManager
putStrLn "Quitting."
where
Expand Down

0 comments on commit 2872139

Please sign in to comment.