(EDIT)I not to sure what is going on. I believe everything is right but I'm not sure. I am trying to create an object but when I compile it reads 'symbol cannot be found'
public class State{
public static void main(String[]args){
something hh = new something();
hh.you();
}
}
And:
public class something{
void you(){
System.out.println("asdfasdfa");
}
}
These are the errors that pop up
State.java:6: error: cannot find symbol
something hh = new something();
^
symbol: class something
location: class State
State.java:6: error: cannot find symbol
something hh = new something();
^
symbol: class something
location: class State
2 errors