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!
Yes it does, thank you
or
Post << a
then…
Post <<< a
also maybe:
a.debug
I used often Post << a
, but I think s.postcs
is the simplest way!