def foo : (Int, String, String) = (1, "Hello", "World")
The compiler will interpret the type (Int, String, String) as a Tuple3[Int, String, String]
def foo : (Int, String, String) = (1, "Hello", "World")
The compiler will interpret the type (Int, String, String) as a Tuple3[Int, String, String]