Created
September 9, 2016 10:33
-
-
Save kkpoon/b097d22263a1a2968486c4233378c6a4 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
iPhone :: String -> String | |
iPhone "7" = "就是七" | |
iPhone _ = "Poor guy" | |
main = do | |
putStrLn "What is your iPhone model?" | |
model <- getLine | |
putStrLn $ iPhone model |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment