Try Except 中的空语句
Empty Statement in Try Except
我确定对此有答案,但我还没有找到。在 C# 中,我会放一个分号,然后是注释。 nim 的等价物是什么?我怎么说 - 好吧抛出了一个例外,但我不在乎,什么也不做。我不想写回声:)
try:
var a = x + y + N /10
except:
echo "what's the best way to make this an empty statement?"
您可以使用discard
语句:
try:
var a = x + y + N / 10
except:
discard
我确定对此有答案,但我还没有找到。在 C# 中,我会放一个分号,然后是注释。 nim 的等价物是什么?我怎么说 - 好吧抛出了一个例外,但我不在乎,什么也不做。我不想写回声:)
try:
var a = x + y + N /10
except:
echo "what's the best way to make this an empty statement?"
您可以使用discard
语句:
try:
var a = x + y + N / 10
except:
discard