Sign in
gnu
/
binutils-gdb
/
cd02e2a209482dd9fa06945ffec0675da7dfd74e
/
.
/
gdb
/
testsuite
/
gdb.pascal
/
hello.pas
blob: 33f01b4caea987e7bc6a0e6732273f5b8224c085 [
file
]
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
.