📄 testdelphinetkeywords.out
字号:
unit TestDelphiNetKeywords;
{
This code compiles, but is not semantically meaningfull.
It is test cases for the code-formating utility
these are actually directives not full-blown keywords
and so are valid for other uses in other contexts
as below.
This is not recommended
}
interface
implementation
procedure DelphiNetKeywordAbuse;
var
operator: integer;
helper: string;
sealed, static: char;
begin
operator := 12;
sealed := 'A';
static := 'b';
helper := sealed + static;
Inc(operator);
end;
end.
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -