how use in it in main project?
- by davit-datuashvili
I have the following interface:
public interface MyFunctor {
int myFunction(int x);
}
And I created a class which implements this interface :
public class Myfunction1 implements MyFunctor {
}
how use in main project? i have corrected mistake now i need how run it in main project?
i mean in public static void main(String[]args)?