forked from JavaTX/JavaCompilerCore
14 lines
162 B
Java
14 lines
162 B
Java
import java.util.Vector;
|
|
|
|
public class TestVector {
|
|
|
|
m(v, w) {
|
|
var a = v.elementAt(0);
|
|
var b = id(a);
|
|
w.addElement(b);
|
|
}
|
|
|
|
id(x) {
|
|
return x;
|
|
}
|
|
} |