when I am trying to run this code I am getting
Error: Could not find or load main class com.lara.CoffeeTest
can anybody tell me the reason
class Coffee {
int size;
}
public class CoffeeTest {
public static void main(String[] args) {
Coffee drink= new Coffee();
drink.size=2;
System.out.println(drink.size);
}
}