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(S
why don't you try this
public class StringFirstTry { public static void main(String[] args) { String name; name = "luke"; System.out.println("Hello, " + name + "pleased to meet you"); }
}