Add Hello World example programs

This commit is contained in:
Marshall Gates
2025-05-20 23:00:57 -04:00
parent 8163c20342
commit e6a14dda4d
6 changed files with 60 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
program hello;
var no : integer;
begin
ClrScr;
for no := 1 to 10 do
writeln('Hello World from Turbo Pascal Line ', no);
end.