在 Nim 中退出控制台应用程序
Exit console application in Nim
我想知道如何在 Nim 中退出控制台应用程序。
您可以使用系统模块的退出功能,例如
quit(1) # where 1 is the error code
1.quit() # same as above
或
"Error message".quit(0) # where 0 is the error code
阅读有关 detail quit 函数的更多信息
或 nim doc
上的 shorthand quit 函数
我想知道如何在 Nim 中退出控制台应用程序。
您可以使用系统模块的退出功能,例如
quit(1) # where 1 is the error code
1.quit() # same as above
或
"Error message".quit(0) # where 0 is the error code
阅读有关 detail quit 函数的更多信息 或 nim doc
上的 shorthand quit 函数