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

Content added Content deleted
(Initial FutureBasic task solution added)
imported>Maxima enthusiast
No edit summary
Line 962: Line 962:
<pre>abcdefghijklmnopqrstuvwxyz
<pre>abcdefghijklmnopqrstuvwxyz
ABCDEFGHIJKLMNOPQRSTUVWXYZ</pre>
ABCDEFGHIJKLMNOPQRSTUVWXYZ</pre>

=={{header|Maxima}}==
<syntaxhighlight lang="maxima">
sublist(makelist(unicode(i),i,0,127),lowercasep);
sublist(makelist(unicode(i),i,0,127),uppercasep);
</syntaxhighlight>
{{out}}
<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"]
["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|MiniScript}}==
=={{header|MiniScript}}==