What does it mean that hens must be in separate files? I thought it means separate classes
getMonthlyEggCount must return int... It does...
When i print it everything looks ok so I can't figure out where the mistake is.
package com.codegym.task.task14.task1408;
public abstract class Hen {
abstract int getMonthlyEggCount();
public String getDescription(){
return "I am a chicken.";
}
}