Rivoreo Source Code Repositories
src.rivoreo.one
/
compiler-explorer
/
be6b96e6fc15fdf3e7e38e4029135db6f5e34fa8
/
.
/
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
.