crayon-syntax-highlighter/util/sample/delphi.txt
2019-08-30 19:30:19 +02:00

9 lines
120 B
Plaintext

type
THelloWorld = class
procedure Put;
end;
procedure THelloWorld.Put;
begin
Writeln('Hello, World!');
end;