package fi.utu.tech; import java.util.function.Function; /** * interface to return method "neliöi" to return a squared number */ public interface neliöijä { Function<Integer, Integer> neliöi = luku -> luku*luku; }