rouge-ruby / rouge

A pure Ruby code highlighter that is compatible with Pygments
https://rouge.jneen.net/
Other
3.32k stars 731 forks source link

Pascal octal/binary numbers #1841

Open Alexey-T opened 2 years ago

Alexey-T commented 2 years ago

Name of the lexer Pascal

Code sample

procedure TForm1.FormCreate(Sender: TObject);
const
  n = %01101100 {binary} + &01234567 {octal} + $FF00 {hex};
begin
end;

Additional context Docs: https://www.freepascal.org/docs-html/ref/refse6.html