unable to use "import"
Keep getting "Undefined...class name: Print" error when compiling CallPrint in following situation (Print already compiled without error):
Folder_A has CallPrint.java source with:
import Folder_B.*
public class CallPrint
{ static void main( String[] args )
{ char C2 = 'B';
Print.withLF( C2 );
}
}
Folder_B has Print.java source with:
package Folder_B;
public class Print
{ public static void withLF( char C )
{ System.out.println("" + C );
}
}
Am I using package & import statements properly?

