Integer sequence: Difference between revisions

Integer sequence in XBasic
m (Update lang example: Use L number postfix)
(Integer sequence in XBasic)
Line 2,802:
bi = bi + 1
}</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}}==
2,139

edits