2020-06-18 10:11:10 +02:00

16 lines
217 B
ObjectPascal

program hello;
var
st : string;
procedure print_hello;
begin
Writeln('Before assignment'); { set breakpoint 1 here }
st:='Hello, world!';
writeln(st); {set breakpoint 2 here }
end;
begin
print_hello;
end.