mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-23 16:20:55 +07:00
14 lines
311 B
Java
14 lines
311 B
Java
public class Test{
|
|
|
|
void test1(){
|
|
<selection>String local = "local";
|
|
System.out.println("one");
|
|
System.out.println("two");</selection>
|
|
}
|
|
|
|
void test2(){
|
|
String local = "local";
|
|
System.out.println("one");
|
|
System.out.println(local.toLowerCase());
|
|
}
|
|
} |