LOTUSSCRIPT LANGUAGE
' Iterate through the Unicode values for a through z, ' appending each corresponding letter to azAlphabet. For letterCode& = Uni("a") To Uni("z") azAlphabet$ = azAlphabet$ + UChr$(letterCode&) Next Print azAlphabet$ ' Prints abcdefghijklmnopqrstuvwxyz
See Also