Yuzz Web Framework Wiki
Yuzz NoSQL Compile-Time Checked HTML Web Framework
Status: Alpha
Brought to you by:
smceligot
String[][] strings = new String[][]{ {"A", "B", "C", "D"}, {"1","2", "3","4"}, {"5","6", "7","8"}, }; F2<Table, String[], Table> fun = new NodeOperators.StringGridToTable(); Table table = Functions.reduce(fun, table(), strings); Render.browse("firefox", table); System.out.println(table.writeString());
A | B | C | D |
1 | 2 | 3 | 4 |
5 | 6 | 7 | 8 |