mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-08 15:53:19 +00:00
7 lines
160 B
Java
Vendored
7 lines
160 B
Java
Vendored
public class A {
|
|
public int foo(int x, String ... args) {
|
|
return x + args.length;
|
|
}
|
|
|
|
public static String[] ar = new String[] { "a", "b"};
|
|
} |