mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-27 09:33:41 +02:00
13 lines
193 B
ObjectPascal
13 lines
193 B
ObjectPascal
Program Example42;
|
|
|
|
{ Program to demonstrate the Move function. }
|
|
|
|
Var S1,S2 : String [30];
|
|
|
|
begin
|
|
S1:='Hello World !';
|
|
S2:='Bye, bye !';
|
|
Move (S1,S2,Sizeof(S1));
|
|
Writeln (S2);
|
|
end.
|