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
Since your class is named String, it is being inferred by the compiler as the argument type of your main method.
Try fully qualifying the argument type instead:
public static void main(java.lang.String[] args) { ...
Or better yet, rename your class to use and non-java.lang class name.