Data commit
This commit is contained in:
parent
7387c8f97b
commit
cb5bb5e222
199093 changed files with 3378972 additions and 0 deletions
|
|
@ -0,0 +1,7 @@
|
|||
declare s character (100) varying;
|
||||
s = 'now is the time to come to the aid of the party';
|
||||
if length(s) <= 2 then stop;
|
||||
put skip list ('First character removed=' || substr(s,2) );
|
||||
put skip list ('Last character removed=' || substr(s, 1, length(s)-1) );
|
||||
put skip list ('One character from each end removed=' ||
|
||||
substr(s, 2, length(s)-2) );
|
||||
Loading…
Add table
Add a link
Reference in a new issue