What\'s wrong with the below Code
public static void main(String[] args){ public static final String Name = \"Robin Wilson\"; }
Your can not declare a local variable(variables inside methods are local variables) as public static. Instead, the following code will work:
public static
public static void main(String[] args){ final String Name = "Robin Wilson"; }