6 lines
67 B
Nim
6 lines
67 B
Nim
import bigints
|
|
|
|
var i = 0.initBigInt
|
|
while true:
|
|
i += 1
|
|
echo i
|