mirror of
https://github.com/compiler-explorer/compiler-explorer.git
synced 2025-12-27 09:23:52 -05:00
* 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>
19 lines
164 B
ObjectPascal
19 lines
164 B
ObjectPascal
unit example;
|
|
|
|
interface
|
|
|
|
type
|
|
TMyClass = class
|
|
public
|
|
procedure SomeProc;
|
|
end;
|
|
|
|
implementation
|
|
|
|
procedure TMyClass.SomeProc;
|
|
begin
|
|
// hello
|
|
end;
|
|
|
|
end.
|