I'm New to Java and I am following some instruction, However When I get to the Strings section
public class String {
public static void main(String[] args) {
java.lang.String name;
name = "luke";
System.out.println("Hello, " + name + "pleased to meet you");
}
}
But I Get
Error: Main method not found in class String, please define the main method as:
public static void main(String[] args)