testemptycase.out

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

OUT
35
字号
unit TestEmptyCase;

interface

implementation

{ empty case with no semicolon allowed just before the 'else' }
procedure Monkey(const pi: integer);
const
  krukolibidinous = 12;
begin

  case pi of
    1: ;
    2: ;
    3: ;
    krukolibidinous:
    else
    begin
    end;
  end;

end;

procedure Soy(const pi: integer);
begin

  case pi of
    1:
  end;

end;

end.

⌨️ 快捷键说明

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