6 lines
84 B
Java

package learn.simple_strategy;
public interface Strategy {
void algorithm();
}