Generate lower case ASCII alphabet: Difference between revisions

no edit summary
m (syntax highlighting fixup automation)
No edit summary
Line 1,434:
a b c d e f g h i j k l m n o p q r s t u v w x y z
</pre>
 
 
=={{header|FutureBasic}}==
<syntaxhighlight lang="futurebasic">
long i
for i = asc("a") to asc("z")
print chr$(i);
next
HandleEvents
</syntaxhighlight>
{{output}}
<pre>
abcdefghijklmnopqrstuvwxyz
</pre>
 
 
=={{header|Gambas}}==
719

edits