Reputation: 1
I am running a hello world code in java on Sublime text, and it is not doing anything. It is not giving me any kind of output, including error messages. I an running it through a custom Java build system that I got from Youtube, that has worked for other people. This is my code:
public class MainClass{
public static void main(String[] args) {
System.out.println("Hello World");
}
}
I tried to run the code, expecting it to print Hello World in the output area, and nothing happened.
Upvotes: 0
Views: 18