Skip to content

Instantly share code, notes, and snippets.

@guibou
Created May 24, 2022 19:15
Show Gist options
  • Save guibou/a9630b5e4dbfa794d70788a297db08d2 to your computer and use it in GitHub Desktop.
Save guibou/a9630b5e4dbfa794d70788a297db08d2 to your computer and use it in GitHub Desktop.
cases :: [a] -> String
cases _ = "Hello"
fiz = \cases l -> cases
main = do
putStrLn $ fiz "Chien" []
[nix-shell:~]$ runhaskell Evil.hs
Chien
[nix-shell:~]$ runhaskell -XLambdaCase Evil.hs
Hello
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment