forked from joewalnes/websocketd
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
3ef457d
commit 99e3023
Showing
2 changed files
with
21 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
#!/usr/bin/env runhaskell | ||
|
||
import Control.Monad (unless) | ||
import System.IO (stdin, hIsEOF) | ||
|
||
-- | For each line FOO received on STDIN, respond with "Hello FOO!". | ||
main :: IO () | ||
main = do | ||
eof <- hIsEOF stdin | ||
unless eof $ do | ||
line <- getLine | ||
putStrLn $ "Hello " ++ line ++ "!" | ||
main |