func.pas
来自「delphi的学习资料」· PAS 代码 · 共 18 行
PAS
18 行
unit Func;
interface
function fff(x: smallInt): smallInt;
implementation
function fff(x: smallInt): smallInt;
begin
// ......
Result:=x*x;
end;
end.
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?