I've code on Java since three months. I started with Intellij Idea, but it's so heavy for my computers, so I've decided code using jEdit.
But many software that I've programmed it's in the way of Intellij, so I oppened my programs on jEdit.
As usual like me, I create a principal class that calls to next class into an Object like the next way:
W1 ejectuar = new W1 ;
But on jEdti prints the next error:
INDT.java:10: error: cannot find symbol
W1 ejecutar = new W1() ;
^
symbol: class W1
location: class INDT
INDT.java:10: error: cannot find symbol
W1 ejecutar = new W1() ;
^
symbol: class W1
location: class INDT
2 errors
Intellij create the class into a package, but I don't know how to link the both class to compile.