Formatting

This commit is contained in:
Ruben Shekspir 2019-04-21 11:31:43 +04:00
parent 3aa2bcec3e
commit e4232275bf
7 changed files with 40 additions and 33 deletions

View file

@ -88,7 +88,7 @@ BEGIN
END Create;
BEGIN
NEW(characterStack);
(* NEW(characterStack);
characterStack := Create();
characterStack.push(characterStack, 'a');
characterStack.push(characterStack, 'b');
@ -117,5 +117,5 @@ BEGIN
Out.Char(characterStack.top(characterStack));
Out.Ln();
Out.Char(characterStack.pop(characterStack));
Out.Ln();
Out.Ln(); *)
END CharacterStack.