Skip to content

Instantly share code, notes, and snippets.

@Zert
Last active August 29, 2015 14:02
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Save Zert/111dab89423e52fbc4ca to your computer and use it in GitHub Desktop.
./XXX.hs:14:18: Warning: Redundant bracket
Found:
(V.length rd) + (V.length rf)
Why not:
V.length rd + (V.length rf)
./XXX.hs:14:18: Warning: Redundant bracket
Found:
(V.length rd) + (V.length rf)
Why not:
(V.length rd) + V.length rf
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment