Integer sequence: Difference between revisions

m
Merge BASIC variations
(→‎{{header|Python}}: Comment on integers.)
m (Merge BASIC variations)
Line 29:
20 PRINT A
30 GOTO 10</lang>
{{works with|QBasic}}
<lang qbasic>A = 0
DO: A = A + 1: PRINT A: LOOP 1</lang>
 
=={{header|C}}==
Line 214 ⟶ 217:
 
Pythons integers are of arbitrary large precision and so programs would probably keep going until OS or hardware system failure.
 
=={{header|QBASIC}}==
<lang qbasic>A = 0
DO: A = A + 1: PRINT A: LOOP 1</lang>
 
=={{header|Tcl}}==
Anonymous user