Created
February 17, 2019 14:03
-
-
Save korolr/d855729703713d8124ba140a20f26961 to your computer and use it in GitHub Desktop.
BurlywoodPlasticApi created by korolr - https://repl.it/@korolr/BurlywoodPlasticApi
This file contains hidden or 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
import Data.Char | |
twoDigits2Int :: Char -> Char -> Int | |
twoDigits2Int x y = read $ x:y:[] :: Int | |
main :: IO () | |
main = print $ twoDigits2Int '4' '2' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment