Rivoreo Source Code Repositories
src.rivoreo.one
/
compiler-explorer
/
3eef8a9e18f7ff1215b98d8b5824dc29183cf4c0
/
.
/
test
/
pascal
/
example.pas
blob: 11083f26f11137426957c9a436badc949775daaf [
file
] [
log
] [
blame
] [
raw
]
unit example
;
interface
type
TMyClass
=
class
public
procedure
SomeProc
;
end
;
implementation
procedure
TMyClass
.
SomeProc
;
begin
// hello
end
;
end
.