I'm learning Haskell, but I didn't find an answer to this.
Why the grave accent is used to pass the mod function to map like in the example? I saw other cases with other functions where it isn't needed.
map (`mod` 3) [1..6] -- result is [1,2,0,1,2,0]
If I pass without the grave accent, the result is completely different.
map (mod 3) [1..6] -- result is [0,1,0,3,3,3]