Created
November 28, 2013 20:12
-
-
Save deech/7697521 to your computer and use it in GitHub Desktop.
Haskell Unicode String Test
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
Prelude> let noel = "noël" | |
Prelude> reverse noel | |
"l\235on" | |
Prelude> take 3 noel | |
"no\235" | |
Prelude> length noel | |
4 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment