3
¿Qué pasa con Groovy multilínea String?
Groovy scripts genera un error: def a = "test" + "test" + "test" Error: No signature of method: java.lang.String.positive() is applicable for argument types: () values: [] Si bien este script funciona bien: def a = new String( "test" + "test" + "test" ) ¿Por qué?