Infix statements are interpreted as method calls in Scala. If infix statements end with a colon, this is a method call on the right operand with the left operand as its argument. Otherwise, it is a method call in the left operand with the correct operand as an argument.
, x + y, , x.+(y), .. + x, y - . x :: y , y.::(x), :: y.
, :: 1, Int. Int ::, , , , :: Int.
::, ( - , ::), 2 :: 1 :: Nil . List() .