F# - Keep F# interactive from posting output

前端 未结 2 2077
栀梦
栀梦 2020-12-16 18:38

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

相关标签:
2条回答
  • 2020-12-16 19:10

    I ended up using

    fsi.ShowDeclarationValues <- false
    

    Which kept it from outputting all of the data. Thank you for the tips though.

    0 讨论(0)
  • 2020-12-16 19:11

    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.

    0 讨论(0)
提交回复
热议问题