如何忽略Nim中过程的结果

时间:2018-11-28 13:12:48

标签: nim

根据标题,假设我具有以下内容:

proc squared(n: int64): int64 = n * n

现在让我们假设我想调用过程squared,但是我对结果不感兴趣。

如果我只是写:

squared(15)

我得到一个错误:

Error: expression 'squared(15)' is of type 'int64' and has to be discarded

我知道这种类型的代码是一种不好的做法,因此我应该明确地忽略结果。 因此,如何明确忽略结果?

1 个答案:

答案 0 :(得分:3)

只要写

discard squared(15)