There is an ambiguity with the usage of the + operator.
For numeric operands, it adds their values: 3 + 4 => 7
For Strings, it concatenates the Strings: "a" + "b" => "ab"

The compiler treats...