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-append/Pascal/string-append.pascal
Normal file
17
Task/String-append/Pascal/string-append.pascal
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
program StringAppend;
|
||||
{$mode objfpc}{$H+}
|
||||
|
||||
uses
|
||||
{$IFDEF UNIX}{$IFDEF UseCThreads}
|
||||
cthreads,
|
||||
{$ENDIF}{$ENDIF}
|
||||
Classes
|
||||
{ you can add units after this };
|
||||
|
||||
var
|
||||
s: String = 'Hello';
|
||||
begin
|
||||
s += ' World !';
|
||||
WriteLn(S);
|
||||
ReadLn;
|
||||
end.
|
||||
Loading…
Add table
Add a link
Reference in a new issue