crayon-syntax-highlighter/util/sample/delphi.txt

9 lines
120 B
Plaintext
Raw Normal View History

2019-08-30 19:30:19 +02:00
type
THelloWorld = class
procedure Put;
end;
procedure THelloWorld.Put;
begin
Writeln('Hello, World!');
end;