In Haskell, any function can be prefixed or infixed. This is a nice feature when you start doing folds and generators. The syntax goes along the lines of:

mod 14 3

is the same as:

14 `mod` 3

The backquotes are used for the purpose of infixing a function.