当我使用Nim的echo
时,我是否需要刷新输出,就像使用Python的print
一样?如果是,我该怎么做?
答案 0 :(得分:3)
您可以使用flushFile(stdout)
:https://nim-lang.org/docs/system.html#flushFile,File_2
但您不必这样做,因为echo
相当于writeLine(stdout, x); flushFile(stdout)
:https://nim-lang.org/docs/system.html#echo,varargs[typed,]