Integer sequence: Difference between revisions

add Fermat
m (→‎{{header|Phix}}: added syntax colouring the hard way)
(add Fermat)
Line 891:
Fantom's integers are 64-bit signed, and so the numbers will return to 0 and continue again, if you wait long enough!
You can use Java BigInteger via FFI
 
=={{header|Fermat}}==
<lang fermat>n:=0;
while 1 do !n;!' '; n:=n+1 od</lang>
 
=={{header|Fish}}==
781

edits