Integer sequence: Difference between revisions

Content deleted Content added
JDDev0 (talk | contribs)
m Update lang example: Use L number postfix
Jjuanhdez (talk | contribs)
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}}==