Created
October 21, 2018 05:56
-
-
Save jabaraster/dab15911a7d2fdea92a7e6e07baf77ad to your computer and use it in GitHub Desktop.
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
module Main where | |
import System.Exit | |
main :: IO () | |
main = do | |
c <- getContents | |
mapM_ core $ lines c | |
where | |
core :: String -> IO () | |
core ":q" = putStrLn "bye." >> exitSuccess | |
core s = putStrLn ("echo >> " ++ s) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment