Created
May 1, 2012 10:37
-
-
Save JakubOboza/2567091 to your computer and use it in GitHub Desktop.
haskell utf-8 data.text example :)
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.Text as Text | |
main = do | |
input <- getLine | |
let lol = Text.pack input in | |
putStrLn $ Text.unpack lol | |
putStrLn "Kuba!" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment