rouge icon indicating copy to clipboard operation
rouge copied to clipboard

Pascal octal/binary numbers

Open Alexey-T opened this issue 3 years ago • 0 comments

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

Alexey-T avatar Jun 26 '22 07:06 Alexey-T