mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 14:23:28 +07:00
15 lines
286 B
Java
15 lines
286 B
Java
import java.io.PrintStream;
|
|
|
|
class Test {
|
|
public static void main() {
|
|
new Runnable() {
|
|
public void run() {
|
|
newMethod().println("Text");
|
|
}
|
|
}
|
|
}
|
|
|
|
private static PrintStream newMethod() {
|
|
return System.out;
|
|
}
|
|
} |