i did a Display class to call Client class :
package Details;
public class Display{
public static void main (String[] args) {
details d = new details(); \\ HERE IT CANNOT FIND SYMBOL
d.details();
}
}
and the output is :
error: cannot find symbol
CAN SOMEONE HELP ME?