So I just started learning Java and wrote the most basic script possible in Notepad++:
public class Test {
public static void main(String[] args){
System.out.println("Hello, World!");
}
}
However, even that doesn’t work when I run it with javac from the command line. Instead I get the following error message:
I was expecting the code to actually, you know… work. I have no idea what I could be possibly doing wrong at this point. Any suggestions?