Files
compiler-explorer/test/pascal/example.pas
Patrick Quist bc6757ae94 Pascalchanges (#2881)
* Changes to allow Program (vs Unit) in Object Pascal

* add possibility of dpr

* more flexibility with pascal filenames

* lintfixes

* i have no idea what im doing

* apply changes to pascal-win

* pascal fixes

* pascal projectfile changes

* work in progress

* bugfixes

* bla

* bugfixes

* mostly working

Co-authored-by: paul mcgee <paul.mcgee.8@bigpond.com>
Co-authored-by: Paul McGee <paulmcgee1969@gmail.com>
2021-09-13 20:22:27 +02:00

19 lines
164 B
ObjectPascal

unit example;
interface
type
TMyClass = class
public
procedure SomeProc;
end;
implementation
procedure TMyClass.SomeProc;
begin
// hello
end;
end.