Skip to content

Instantly share code, notes, and snippets.

@deech
Created November 28, 2013 20:12
Show Gist options
  • Save deech/7697521 to your computer and use it in GitHub Desktop.
Save deech/7697521 to your computer and use it in GitHub Desktop.
Haskell Unicode String Test
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