1314151617181920212223
} XLMap s = new XLMap(); s.add("hello there", 123213); s.add("asdf", "woeiruewoir"); return s.toXloper(); } public boolean hasFunction(String name) { return true; }
4647484950515253545556
m.add("i1", 2343); m.add("sdf", 34.2); m.add("asdf", 4545345.454345345); m.add("as33", XLError.NAME); return m.toXloper(); } public static double echo(double v) { return v; }
5758596061626364656667
public static XLoper mapTest() { XLMap s = new XLMap(); s.add("test", 2); s.add("hello", 3); return s.toXloper(); } public static XLArray makeRandoms(int rows, int cols) { XLArray xa = new XLArray(rows, cols); for (int i = 0; i < rows; i++) {