Jump to content

Generate lower case ASCII alphabet: Difference between revisions

Generate lower case ASCII alphabet in XBasic
(Add lang example)
(Generate lower case ASCII alphabet in XBasic)
Line 584:
NEXT i
END</syntaxhighlight>
 
==={{header|XBasic}}===
{{works with|Windows XBasic}}
<syntaxhighlight lang="qbasic">PROGRAM "progname"
VERSION "0.0000"
 
DECLARE FUNCTION Entry ()
 
FUNCTION Entry ()
DIM a$[27]
 
FOR i = 1 TO 26
a$[i] = CHR$(i + 96)
PRINT a$[i];
NEXT i
 
END FUNCTION
END PROGRAM</syntaxhighlight>
 
==={{header|Yabasic}}===
2,169

edits

Cookies help us deliver our services. By using our services, you agree to our use of cookies.