mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-25 02:21:17 +07:00
17 lines
309 B
Java
17 lines
309 B
Java
class A {
|
|
void assignment(double v, int x, int y) {
|
|
String result;
|
|
<selection>
|
|
result = format("digit %f", v, x, y );
|
|
</selection>
|
|
System.out.println(result);
|
|
}
|
|
|
|
}
|
|
|
|
class B {
|
|
@FunctionalInterface
|
|
private interface DII {
|
|
String doIt(double d, int x, int y);
|
|
}
|
|
} |