I'm learning Java in school and they told us to use eclipse since it provide a whole IDE, but somehow I like working with sublime better, I don't know, maybe because its cleaner and feels really light weight compare to eclipse.
Now, if I created a Rectangle.java class and I have also created a Program.java class which includes the main:
public class Program {
public static void main(String[] args) {
// TODO Auto-generated method stub
Rectangle myRect = new Rectangle(double w, double h);
myRect.show;
}
}
So where do I run this..? in the terminal? and how?
Of course I will not have a debugger unfortunately, but please help me to figure out how can I use sublime while learning Java, I like this editor and want to use it.
Thanks guys!