3
O que há de errado com o Groovy multi-line String?
Os scripts do Groovy geram um erro: def a = "test" + "test" + "test" Erro: No signature of method: java.lang.String.positive() is applicable for argument types: () values: [] Embora este script funcione bem: def a = new String( "test" + "test" + "test" ) Por quê?