(max 23,23) == (max 23,23)
In above example I must put parenthesis over both methods. Is there something similar to Haskell's precedence operator: dollar($)
so I can write something like this:
(max 2,3) == $ max 2,2
Or like this:
$ max 2,3 == $ max 2,3
and both examples evaluate to first example?
Or is there something that give me power over precedence in Ruby, like some keyword in method definition?