When i try to compile the following code in Eclipse i get this error
ERROR
Syntax error on tokens, delete these tokens
CODE
public class HellWorld2 {
public static void main(String[] args)
{
String var1 = "soccer";
String var2 = "baller";
if (var2.equals(var1))
{
System.out.println(var1 + " " + var2);
}
System.out.println("the strings are no identicle!)");
}
}
anyideas?