Nim有输出缓冲吗?

时间:2017-11-12 17:51:35

标签: echo flush nim

当我使用Nim的echo时,我是否需要刷新输出,就像使用Python的print一样?如果是,我该怎么做?

1 个答案:

答案 0 :(得分:3)

您可以使用flushFile(stdout)https://nim-lang.org/docs/system.html#flushFile,File_2

在Nim中刷新标准输出

但您不必这样做,因为echo相当于writeLine(stdout, x); flushFile(stdout)https://nim-lang.org/docs/system.html#echo,varargs[typed,]