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