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