Data commit
This commit is contained in:
parent
7387c8f97b
commit
cb5bb5e222
199093 changed files with 3378972 additions and 0 deletions
|
|
@ -0,0 +1,10 @@
|
|||
program lowerCaseAscii(input, output, stdErr);
|
||||
var
|
||||
alphabet: set of char;
|
||||
begin
|
||||
// as per ISO 7185, 'a'..'z' do not necessarily have to be contiguous
|
||||
alphabet := [
|
||||
'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'
|
||||
];
|
||||
end.
|
||||
Loading…
Add table
Add a link
Reference in a new issue