Idiomatically determine all the lowercase and uppercase letters: Difference between revisions

Content added Content deleted
(Added Arturo implementation)
Line 728: Line 728:
</lang>
</lang>
{{Out}}
{{Out}}
<pre>abcdefghijklmnopqrstuvwxyz
ABCDEFGHIJKLMNOPQRSTUVWXYZ</pre>

=={{header|Mathematica}}/{{header|Wolfram Language}}==
<lang Mathematica>StringJoin[CharacterRange["a", "z"]]
StringJoin[CharacterRange["A", "Z"]]</lang>
{{out}}
<pre>abcdefghijklmnopqrstuvwxyz
<pre>abcdefghijklmnopqrstuvwxyz
ABCDEFGHIJKLMNOPQRSTUVWXYZ</pre>
ABCDEFGHIJKLMNOPQRSTUVWXYZ</pre>