testesoterickeywords.out

来自「格式化源码的最新板」· OUT 代码 · 共 62 行

OUT
62
字号
unit testesoterickeywords;

interface

var
  fred, vodka: integer;

var
  jim2: integer;

threadvar
  jim: real;

var
  ey: integer;

threadvar
  i:     integer;
  broom: boolean;

var
  drink: real absolute vodka;

type
  tcow = packed record
    i1: integer;
    s2: string;
    b3: boolean;
  end;
  tmoo = packed array
    [1..10] of tcow;

resourcestring
  greeting = 'Hello';

implementation

threadvar
  herd: tmoo;

function justsayno: boolean; assembler;
begin
  Result := False;
end;

function _thisfunctionstartswithanunderscore: boolean;
begin
  Result := True;
end;

function __thisfunctionstartswithanunderscore: boolean;
begin
  Result := _thisfunctionstartswithanunderscore;
end;

function ___thisfunctionstartswithanunderscore: boolean;
begin
  Result := __thisfunctionstartswithanunderscore;
end;

end.
 

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?