I\'m working with F# interactive and I\'m computing some large lists and arrays and I\'d rather not have the interactive window post all of that information. Is there way to
I ended up using
fsi.ShowDeclarationValues <- false
Which kept it from outputting all of the data. Thank you for the tips though.
Check out
http://blogs.msdn.com/b/dsyme/archive/2010/01/08/some-tips-and-tricks-for-formatting-data-in-f-interactive-and-a-in-sprintf-printf-fprintf.aspx
for some suggestions that may be relevant.