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

Content deleted Content added
Jjuanhdez (talk | contribs)
Idiomatically determine all the lowercase and uppercase letters in Dart
Aerobar (talk | contribs)
add RPL
Line 1,063:
Lower case : abcdefghijklmnopqrstuvwxyz
Upper case : ABCDEFGHIJKLMNOPQRSTUVWXYZ
 
=={{header|RPL}}==
RPL use a proprietary set of 8-bit characters, which coding system matches with ASCII from space (ASCII 32) to tilde (ASCII 126).
≪ "" "A" NUM "Z" NUM '''FOR''' c c CHR + '''NEXT'''
"" "a" NUM "z" NUM '''FOR''' c c CHR + '''NEXT'''
≫ EVAL
{{out}}
<pre>
2: "ABCDEFGHIJKLMNOPQRSTUVWXYZ"
1: "abcdefghijklmnopqrstuvwxyz"
</pre>
 
=={{header|Ruby}}==