mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-07 04:03:20 +07:00
GitOrigin-RevId: 0cf0aa8d5875e2bc52dfaa96c1259ccb314bbd96
16 lines
349 B
Java
16 lines
349 B
Java
class Test {
|
|
void test1(){
|
|
<selection>System.out.println("Hello!");
|
|
System.out.println("user");</selection>
|
|
}
|
|
|
|
void test2(String name){
|
|
System.out.println("Hello!");
|
|
System.out.println(name);
|
|
}
|
|
|
|
void test3(){
|
|
System.out.println("Good morning!");
|
|
System.out.println("user");
|
|
}
|
|
} |