i1 : f = {{"hi there","foo"},{-3, 2^40}}
o1 = {{hi there, foo}, {-3, 1099511627776}}
o1 : List
|
i4 : netList(f,Boxes=>true,HorizontalSpace=>1,VerticalSpace=>1)
+----------+---------------+
| | |
o4 = | hi there | foo |
| | |
+----------+---------------+
| | |
| -3 | 1099511627776 |
| | |
+----------+---------------+
|
i7 : netList apply(5,i->apply(i+1,j->(i,j)))
+------+------+------+------+------+
o7 = |(0, 0)| | | | |
+------+------+------+------+------+
|(1, 0)|(1, 1)| | | |
+------+------+------+------+------+
|(2, 0)|(2, 1)|(2, 2)| | |
+------+------+------+------+------+
|(3, 0)|(3, 1)|(3, 2)|(3, 3)| |
+------+------+------+------+------+
|(4, 0)|(4, 1)|(4, 2)|(4, 3)|(4, 4)|
+------+------+------+------+------+
|