Printing out a full-length Array

Is there any way to print a full uncut array/list to the post-window? It automatically defaults to showing only the first about 100 items of the array.

1 Like

Does .postcs work for you?

1 Like

You want to use postcs or ‘post compile string’:

a = 4000.collect({0.1.rand2});

a.postcs; // show it all!

oops! what @elifieldsteel said :smiley:

Yes it does, thank you :sunny:

or

Post << a

then…

Post <<< a

also maybe:

a.debug

I used often Post << a, but I think s.postcs is the simplest way!