Skip to content

Instantly share code, notes, and snippets.

@parsonsmatt
Last active October 29, 2017 18:44
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save parsonsmatt/29d0b64c2b3f4565a9fc70555273fa82 to your computer and use it in GitHub Desktop.
Save parsonsmatt/29d0b64c2b3f4565a9fc70555273fa82 to your computer and use it in GitHub Desktop.
$ stack ghci --package case-insensitive
> import Data.CaseInsensitive as CS
> :set -XOverloadedStrings
> CI.mk "ß" == "SS"
True
λ> CI.mk "ß" == "ss"
True
λ> CI.mk "ß" == "s"
False
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment