mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-19 01:50:56 +07:00
8 lines
217 B
Java
8 lines
217 B
Java
import java.util.function.Function;
|
|
import static java.util.function.Function.identity;
|
|
|
|
class FunctionExample {
|
|
public static void main(String [] args) throws Exception {
|
|
Function f = Function.identity();
|
|
}
|
|
} |