mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-24 00:50:53 +07:00
8 lines
185 B
Java
8 lines
185 B
Java
import java.util.List;
|
|
|
|
class Test {
|
|
public static void foo(List<String> args, int i) {
|
|
<selection>System.out.println("hi");</selection>
|
|
System.out.println(args.get(i));
|
|
}
|
|
} |