class hello{
public static void main(String[] arguments){
System.out.println("Hello World!");
System.out.println("New Line.");
}
}
Above is my code and eclipse runs it without error report. It should print out Hello World! and New Line., but how can I see these content? I can’t find it in eclipse.
Make your class
public. It’s not running it because it’s not public.Do a Window -> Show View -> Console and you should be able to see it.