This website works better with JavaScript
Home
Explore
Help
Sign In
pascal
/
freepascal.compiler
mirror of
https://gitlab.com/freepascal.org/fpc/source.git
Watch
2
Star
0
Fork
0
Files
Issues
0
Wiki
Browse Source
+ Fixed error on line 22
michael
27 years ago
parent
a213e8adb4
commit
c9b07a8a3a
1 changed files
with
1 additions
and
1 deletions
Unified View
Show Diff Stats
1
1
docs/crtex/ex3.pp
+ 1
- 1
docs/crtex/ex3.pp
View File
@@ -19,5 +19,5 @@ begin
end;
end;
#27 : WriteLn('ESC');
#27 : WriteLn('ESC');
end;
end;
- until
#
ch=27 {Esc}
+ until ch=
#
27 {Esc}
end.
end.