mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-04 17:20:55 +07:00
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");
|
|
}
|
|
} |