summaryrefslogtreecommitdiff
path: root/fpcdocs/refex/ex42.pp
blob: db47909de1d871f8ff0fb54a3e78a6af95e1b132 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
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.