mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-07-27 09:29:10 +07:00
9 lines
137 B
Java
9 lines
137 B
Java
class Foo {
|
|
{
|
|
String s = "Hello";
|
|
System.out.println(s);
|
|
Runnable r = () -> {
|
|
System.out.println(s);
|
|
};
|
|
}
|
|
} |