Given the following expression: * 8⎕CR 2 2⍴10 'foo' 20 'bar'* ┌→───────┐ ↓10 ┌→──┐│ │ │foo││ │ └───┘│ │20 ┌→──┐│ │ │bar││ │ └───┘│ └∊───────┘
The combination of strings and numbers in the array isn't very pretty. I'd like to suggest that it renders as following instead: ┌→───────┐ ↓ ┌→──┐│ │10 │foo││ │ └───┘│ │ ┌→──┐│ │20 │bar││ │ └───┘│ └∊───────┘ I would also like to see another ⎕CR mode that would render it like below, as this would make displaying arrays with lots of strings (in my case, database table content) much easier to read: ┌→───────┐ ↓10 "foo"│ │20 "bar"│ └∊───────┘ Jürgen, what's your opinion on this? Regards, Elias