RosettaCodeData/Task/Integer-sequence/Phix/integer-sequence-3.phix
2019-09-12 10:33:56 -07:00

6 lines
110 B
Text

include mpfr.e
mpz b = mpz_init(0)
while true do
mpz_add_ui(b,b,1)
mpfr_printf(1,"%Zd\n",b)
end while