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