gpt4 book ai didi

f# - 如何在 F# 语言中暂停控制台

转载 作者:行者123 更新时间:2023-12-04 00:47:31 25 4
gpt4 key购买 nike

请告诉我在 F# 中运行程序时如何暂停控制台窗口。

open System
let myList = [0..9]
let myFunction =
for n in myList do
Console.WriteLine(n)
myFunction

最佳答案

您可以考虑将 pause 函数包装在编译器指令中,因为您可能不希望在发布代码中具有相同的效果。

(* your code here *)
#if DEBUG
System.Console.ReadKey(true) |> ignore
#endif

关于f# - 如何在 F# 语言中暂停控制台,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15308268/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com