Skip to content

Commit 2f879c3

Browse files
committed
Change Pascal script
1 parent a36f7d6 commit 2f879c3

1 file changed

Lines changed: 10 additions & 5 deletions

File tree

HelloWorld.pas

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
1-
program HelloWorld;
2-
uses crt;
3-
1+
program Project1;
2+
{$mode objfpc}{$H+}
3+
uses
4+
{$IFDEF UNIX}{$IFDEF UseCThreads}
5+
cthreads,
6+
{$ENDIF}{$ENDIF}
7+
Classes;
48
begin
5-
writeln('Hello, World!');
6-
end.
9+
WriteLn('Hello World!');
10+
ReadLn;
11+
end.

0 commit comments

Comments
 (0)