Closed
Description
Is the REPL broken in the latest stable version of Julia? In version 1.3.1 I obtained the (expected) truncation of arrays displayed in the REPL. For example, the command
randn(100,100)
displays a truncated set of values.
In Julia versions 1.4.1 and 1.4.2 the same command will attempt to display all 10000 values of this array. Of course, the situation is much worse for huge arrays.
I understand that I can suppress the output with a trailing semicolon, but I preferred the old behavior that displayed a small selection of array values.
displaysize(stdout) returns the value (24, 112), which looks correct to me.