Integer sequence: Difference between revisions

Content added Content deleted
m (Update lang example: Use L number postfix)
(Integer sequence in XBasic)
Line 2,802: Line 2,802:
bi = bi + 1
bi = bi + 1
}</syntaxhighlight>
}</syntaxhighlight>

=={{header|XBasic}}==
{{works with|Windows XBasic}}
<syntaxhighlight lang="qbasic">PROGRAM "integseq"
VERSION "0.0000"

DECLARE FUNCTION Entry ()

FUNCTION Entry ()

DO WHILE $$TRUE
INC i
PRINT i
LOOP

END FUNCTION
END PROGRAM</syntaxhighlight>


=={{header|XLISP}}==
=={{header|XLISP}}==