Update all new Tasks
This commit is contained in:
parent
00a190b0a6
commit
91df62d461
5697 changed files with 93386 additions and 804 deletions
17
Task/String-prepend/Pascal/string-prepend.pascal
Normal file
17
Task/String-prepend/Pascal/string-prepend.pascal
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
program StringPrepend;
|
||||
{$mode objfpc}{$H+}
|
||||
|
||||
uses
|
||||
{$IFDEF UNIX}{$IFDEF UseCThreads}
|
||||
cthreads,
|
||||
{$ENDIF}{$ENDIF}
|
||||
Classes
|
||||
{ you can add units after this };
|
||||
|
||||
var
|
||||
s: String = ' World !';
|
||||
begin
|
||||
s := 'Hello' + s;
|
||||
WriteLn(S);
|
||||
ReadLn;
|
||||
end.
|
||||
Loading…
Add table
Add a link
Reference in a new issue