You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

25 lines
400 B
Plaintext

program stacktest;
uses
stack in '../lib/stack.pas';
var
st, st1 : stack_obj;
begin
st := init_stack;
st1 := init_stack;
push(st, 'Hello');
push(st1, 'New stack');
push(st, 'World');
push(st1, 'With new values');
push(st, 'How');
push(st, 'Are');
push(st, 'You');
push(st, '?');
while is_empty(st) = false do
begin
WriteLn(pop(st));
end;
WriteLn(pop(st1));
end.