Data commit
This commit is contained in:
parent
7387c8f97b
commit
cb5bb5e222
199093 changed files with 3378972 additions and 0 deletions
4
Task/String-case/PL-I/string-case-1.pli
Normal file
4
Task/String-case/PL-I/string-case-1.pli
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
declare s character (20) varying initial ('alphaBETA');
|
||||
|
||||
put skip list (uppercase(s));
|
||||
put skip list (lowercase(s));
|
||||
5
Task/String-case/PL-I/string-case-2.pli
Normal file
5
Task/String-case/PL-I/string-case-2.pli
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
/* An alternative to the above, which might be used if some */
|
||||
/* non-standard conversion is required, is shown for */
|
||||
/* converting to upper case: */
|
||||
put skip list ( translate(s, 'abcdefghijklmnopqrstuvwxyz',
|
||||
'ABCDEFGHIJKLMNOPQRSTUVWXYZ') );
|
||||
Loading…
Add table
Add a link
Reference in a new issue