JavaTXCompilerInJavaTX/test/javFiles/MatrixTest.jav

12 lines
262 B
Plaintext
Raw Normal View History

2018-06-28 14:41:13 +00:00
import java.util.Vector;
import java.lang.Object;
class Matrix extends Vector<Vector<Object>> {
Object mul1(Object x, Object y) { return x;}
Object add1(Object x, Object y) { return x;}
mul(m) {
var ret = new Matrix();
return ret;
}
}