forked from JavaTX/JavaCompilerCore
12 lines
130 B
Plaintext
12 lines
130 B
Plaintext
|
import java.util.Vector;
|
||
|
|
||
|
public class TestVector {
|
||
|
|
||
|
m(v, w) {
|
||
|
w.addElement(id(v.elementAt(0)));
|
||
|
}
|
||
|
|
||
|
id(x) {
|
||
|
return x;
|
||
|
}
|
||
|
}
|