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.