Generate lower case ASCII alphabet: Difference between revisions

Content added Content deleted
m (Update Lang example: Fix spelling of Lang)
(→‎Insitux: implementation)
Line 1,589: Line 1,589:
end
end
</syntaxhighlight>
</syntaxhighlight>

=={{header|Insitux}}==
<syntaxhighlight lang="insitux>(-> (map char-code "az")
(adj _ inc)
(.. range)
(map char-code))</syntaxhighlight>
<pre>
["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|J}}==
=={{header|J}}==